papercss/src/utilities/_shadows.scss
2021-01-16 13:26:51 +08:00

36 lines
415 B
SCSS

.shadow {
@include shadow();
&.shadow-large {
@include shadow(large);
}
&.shadow-small {
@include shadow(small);
}
&.shadow-hover {
&:hover {
@include shadow(hover);
}
}
}
.child-shadows > * {
@include shadow();
}
.child-shadows {
.shadow-none {
box-shadow: none;
}
}
.child-shadows-hover > * {
@include shadow();
&:hover {
@include shadow(hover);
}
}