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;
|
2020-02-05 03:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin gameViewLabel {
|
|
|
|
color: rgb(255,240,230);
|
|
|
|
background-color: rgba(0,0,0,0.7);
|
|
|
|
padding: 0.25em;
|
2020-04-12 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@function place-below($grid-column, $grid-row) {
|
|
|
|
@return $grid-row + 1 + '/' + $grid-column + 2 + '/ span 1 / span 1';
|
2020-01-16 23:21:23 +00:00
|
|
|
}
|