website/assets/sass/sections.scss

20 lines
343 B
SCSS
Raw Normal View History

2023-04-01 00:14:22 +02:00
.section-menu {
border: 1px solid #eee;
2023-04-01 00:14:22 +02:00
list-style-type: none;
display: flex;
2023-07-14 15:24:55 +02:00
li {
width: 100%;
padding: 1rem 0;
border-right: 1px solid #eee;
display: flex;
justify-content: center;
align-items: center;
&:last-of-type {
border-right: 0;
}
}
2023-04-01 00:14:22 +02:00
}