1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-30 06:54:39 +04:00

pagination componant

This commit is contained in:
chomik
2019-04-02 17:37:42 +02:00
parent ebf2c7d8d7
commit 6f02b9d59d
6 changed files with 115 additions and 10 deletions
+21 -1
View File
@@ -1,3 +1,23 @@
body {
background: $body-bg;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
-webkit-font-feature-settings: "liga" 0;
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;
}