22 lines
610 B
Sass
22 lines
610 B
Sass
|
@use '../../styles/tools'
|
||
|
@use './variables' as *
|
||
|
|
||
|
.v-footer
|
||
|
align-items: center
|
||
|
display: flex
|
||
|
flex: $footer-flex
|
||
|
padding: $footer-padding
|
||
|
position: relative
|
||
|
transition: $footer-transition
|
||
|
transition-property: height, width, transform, max-width, left, right, top, bottom
|
||
|
|
||
|
// missing from variables
|
||
|
@include tools.border($footer-border...)
|
||
|
@include tools.elevation($footer-elevation)
|
||
|
@include tools.position($footer-positions)
|
||
|
@include tools.rounded($footer-border-radius)
|
||
|
@include tools.theme($footer-theme...)
|
||
|
|
||
|
&--rounded
|
||
|
@include tools.rounded($footer-rounded-border-radius)
|