mirror of https://github.com/Trivernis/whooshy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
Sass
19 lines
405 B
Sass
@import vars
|
|
|
|
@mixin default-element
|
|
background: lighten($primary, 10%)
|
|
color: $primarySurface
|
|
border: 2px solid $primarySurface
|
|
transition-duration: 0.2s
|
|
|
|
@mixin fillWindow
|
|
position: absolute
|
|
top: 0
|
|
left: 0
|
|
|
|
@mixin gridPosition($rowStart, $rowEnd, $columnStart, $columnEnd)
|
|
grid-row-start: $rowStart
|
|
grid-row-end: $rowEnd
|
|
grid-column-start: $columnStart
|
|
grid-column-end: $columnEnd
|