17 lines
297 B
SCSS
17 lines
297 B
SCSS
|
@mixin fullspan {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
@mixin flexAround($direction) {
|
||
|
display: flex;
|
||
|
flex-direction: $direction;
|
||
|
align-items: center;
|
||
|
justify-content: space-around;
|
||
|
}
|
||
|
|
||
|
@mixin gameViewLabel {
|
||
|
color: rgb(255,240,230);
|
||
|
background-color: rgba(0,0,0,0.7);
|
||
|
padding: 0.25em;
|
||
|
}
|