9 lines
114 B
SCSS
9 lines
114 B
SCSS
@mixin disabled {
|
|
&[disabled] {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
|
|
@content;
|
|
}
|
|
}
|