Files
vuefilemanager/resources/sass/vue-file-manager/_mixins.scss
2020-07-05 09:14:17 +02:00

33 lines
633 B
SCSS
Executable File
Vendored

@mixin text($font: "Open Sans", $font-size: 16, $color: $text-primary) {
font-family: $font, sans-serif;
font-size:($font-size/16) + 0em;
color: $color;
}
@mixin font-size($size) {
font-size:($size/16) + 0em;
}
@mixin transition($time: 0.3s) {
transition: $time all ease;
}
@mixin transform($effect) {
-webkit-transform: $effect;
-moz-transform: $effect;
transform: $effect;
}
@mixin no-yellow {
&:-webkit-autofill {
-webkit-box-shadow: 0 0 0 30px white inset;
}
}
@mixin widget-card {
padding: 20px;
border-radius: 8px;
box-shadow: 0 3px 15px 2px hsla(220, 36%, 16%, 0.05);
background: white;
}