mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
24 lines
535 B
SCSS
24 lines
535 B
SCSS
div.chill-collection {
|
|
ul.chill-collection__list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: 1.5rem;
|
|
|
|
li.chill-collection__list__entry:nth-child(2n) {
|
|
background-color: var(--chill-light-gray);
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
// all entries, except the last one
|
|
li.chill-collection__list__entry:nth-last-child(1n+2) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
button.chill-collection__button--add {
|
|
|
|
|
|
}
|
|
}
|
|
|