26 lines
411 B
SCSS
26 lines
411 B
SCSS
//
|
|
// list-group.scss
|
|
// Extended from Bootstrap
|
|
//
|
|
|
|
|
|
//
|
|
// Additional style for theme
|
|
//
|
|
.list-group .list-group-item i, .list-group .list-group-item span{
|
|
margin-right: 5px;
|
|
}
|
|
|
|
// list group borderless
|
|
.list-group-borderless {
|
|
.list-group-item {
|
|
border: none;
|
|
padding: 0.425rem 0;
|
|
}
|
|
a.list-group-item {
|
|
&:hover {
|
|
background-color: transparent;
|
|
color: $primary;
|
|
}
|
|
}
|
|
} |