20 lines
No EOL
321 B
SCSS
20 lines
No EOL
321 B
SCSS
@mixin main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-left: auto;
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
column-gap: 20px;
|
|
box-sizing: border-box;
|
|
|
|
margin: 0px;
|
|
padding: 0px;
|
|
|
|
list-style-type: none;
|
|
}
|
|
} |