node-go/play-node-go/public/stylesheets/partials/_mixins.scss

11 lines
188 B
SCSS
Raw Normal View History

2020-01-16 23:21:23 +00:00
@mixin fullspan {
height: 100%;
width: 100%;
}
@mixin flexAround($direction) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: space-around;
}