37 lines
867 B
CSS
37 lines
867 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
::-webkit-scrollbar-track {
|
|
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
-moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
@media screen and (min-width: 966px) {
|
|
::-webkit-scrollbar, .scroller {
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: #f1f1f1;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #888;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|