Files
landscape-template/src/styles/shared.scss
2022-08-16 12:15:45 +03:00

27 lines
505 B
SCSS

.input-removed-arrows::-webkit-outer-spin-button,
.input-removed-arrows::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
.input-removed-arrows[type="number"] {
-moz-appearance: textfield;
}
button[disabled] {
opacity: 0.5;
pointer-events: none;
}
.sticky-side-element {
position: sticky;
top: calc(var(--navHeight) + 16px);
max-height: calc(100vh - var(--navHeight) - 16px);
}
.sticky-top-element {
position: sticky;
top: calc(var(--navHeight));
}