Make disabled content more "pretty"

This commit is contained in:
Grzegorz Leoniec 2019-03-13 12:51:50 +01:00
parent 0ba0d2f0a2
commit 9cad81fa25
No known key found for this signature in database
GPG Key ID: 3AA43686D4EB1377

View File

@ -5,8 +5,19 @@
$easeOut: cubic-bezier(0.19, 1, 0.22, 1);
.disabled-content {
border-style: solid;
border-color: $color-warning;
position: relative;
&::before {
@include border-radius($border-radius-x-large);
box-shadow: inset 0 0 0 5px $color-danger;
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
}
}
.layout-enter-active {