mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-16 21:04:22 +01:00
27 lines
505 B
SCSS
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));
|
|
}
|