hedera-web/js/htk/style/classes.scss

21 lines
348 B
SCSS
Raw Normal View History

2022-05-24 10:18:44 +00:00
@import "variables";
%box {
border-radius: .6em;
box-shadow: .05em .05em .2em rgba(0, 0, 0, .1);
overflow: hidden;
border: none;
background-color: white;
}
%clickable {
cursor: pointer;
transition: background-color 250ms ease-out;
&:hover,
&:focus {
background-color: $color-hover-cd;
outline: none;
}
}