mirror of
https://github.com/tabler/tabler.git
synced 2025-12-23 02:14:26 +04:00
34 lines
611 B
SCSS
34 lines
611 B
SCSS
// stylelint-disable property-no-vendor-prefix
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
overflow-y: scroll;
|
|
touch-action: manipulation;
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-text-size-adjust: none;
|
|
font-feature-settings: "liga" 0;
|
|
}
|
|
|
|
body *::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
transition: .3s background;
|
|
}
|
|
|
|
body *::-webkit-scrollbar-thumb {
|
|
background: $gray-400;
|
|
}
|
|
|
|
body *:hover::-webkit-scrollbar-thumb {
|
|
background: $gray-500;
|
|
}
|
|
|
|
/**
|
|
Remove the cancel buttons in Chrome and Safari on macOS.
|
|
*/
|
|
[type="search"]::-webkit-search-cancel-button {
|
|
-webkit-appearance: none;
|
|
}
|