8 lines
241 B
SCSS
8 lines
241 B
SCSS
// The shared definition of the "locked" appearance: dimmed and
|
|
// non-interactive, without removing the element from layout (so it holds its
|
|
// place during lock/unlock transitions).
|
|
@mixin style {
|
|
opacity: 0.4;
|
|
pointer-events: none;
|
|
}
|