vault/ui/app/styles/components/linked-block.scss
2018-05-25 13:55:07 -06:00

17 lines
276 B
SCSS

.linked-block {
cursor: pointer;
transition: box-shadow $speed;
will-change: box-shadow;
&:hover,
&:focus,
&:active {
position: relative;
box-shadow: $box-link-hover-shadow, $box-shadow-middle;
}
}
.linked-block .columns {
@extend .is-flex-center;
}