mirror of
https://github.com/tabler/tabler.git
synced 2025-12-24 02:38:15 +04:00
23 lines
373 B
SCSS
23 lines
373 B
SCSS
// stylelint-disable property-no-vendor-prefix
|
|
html {
|
|
font-size: 16px;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
overflow-y: scroll;
|
|
letter-spacing: $body-letter-spacing;
|
|
touch-action: manipulation;
|
|
text-rendering: optimizeLegibility;
|
|
font-feature-settings: "liga" 0;
|
|
|
|
.content * {
|
|
@include scrollbar;
|
|
}
|
|
|
|
@media print {
|
|
background: transparent;
|
|
}
|
|
}
|
|
|