mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +01:00
43 lines
581 B
SCSS
43 lines
581 B
SCSS
.sl-c-list {
|
|
|
|
&,
|
|
&-horizontal-wrapper ul,
|
|
&-navigation-wrapper ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
&-horizontal-wrapper {
|
|
|
|
@include sl-breakpoint--large {
|
|
|
|
ul {
|
|
display: flex;
|
|
margin: {
|
|
right: -0.5rem;
|
|
left: -0.5rem;
|
|
};
|
|
}
|
|
|
|
li {
|
|
padding: {
|
|
right: .5rem;
|
|
left: .5rem;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
&-navigation-wrapper {
|
|
position: relative;
|
|
|
|
li {
|
|
margin: .5rem 0;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
ul ul { margin: 0 0 0 1rem; }
|
|
}
|
|
}
|