11 lines
188 B
SCSS
11 lines
188 B
SCSS
|
@mixin fullspan {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
@mixin flexAround($direction) {
|
||
|
display: flex;
|
||
|
flex-direction: $direction;
|
||
|
align-items: center;
|
||
|
justify-content: space-around;
|
||
|
}
|