19 lines
343 B
SCSS
19 lines
343 B
SCSS
.section-menu {
|
|
border: 1px solid #eee;
|
|
list-style-type: none;
|
|
display: flex;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|