25 lines
350 B
SCSS
25 lines
350 B
SCSS
.list {
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
li {
|
|
padding: .5rem;
|
|
}
|
|
}
|
|
|
|
.list-divider {
|
|
li:nth-child(n+2) {
|
|
// margin-top: 10px;
|
|
// padding-top: 10px;
|
|
border-top: 1px solid rgb(128, 128, 128);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-clickable {
|
|
li:hover {
|
|
background: darken-brighten-color($background, 5%);
|
|
}
|
|
} |