19 lines
278 B
SCSS
19 lines
278 B
SCSS
@import "constants";
|
|
|
|
%horizontal-list {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 0px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
%horizontal-list-item {
|
|
display: inline-block;
|
|
}
|
|
|
|
%animation {
|
|
animation-fill-mode: forwards;
|
|
animation-duration: 0.3s;
|
|
}
|