node-go/packages/server/play-node-go/public/stylesheets/partials/_mixins.scss
2020-02-05 16:45:05 -08:00

11 lines
No EOL
188 B
SCSS

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