website/assets/sass/sections.scss

20 lines
343 B
SCSS
Raw Permalink Normal View History

2023-03-31 22:14:22 +00:00
.section-menu {
border: 1px solid #eee;
2023-03-31 22:14:22 +00:00
list-style-type: none;
display: flex;
2023-07-14 13:24:55 +00: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-03-31 22:14:22 +00:00
}