mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 20:01:36 +00:00
40 lines
590 B
CSS
40 lines
590 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply outline-none;
|
|
@apply focus-visible:outline-2 focus-visible:-outline-offset-1 focus-visible:outline-accent-500;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
@apply bg-primary-950;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
@apply h-1 w-1;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
@apply bg-primary-950;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply bg-primary-600 hover:bg-primary-500;
|
|
}
|
|
|
|
input::-ms-reveal,
|
|
input::-ms-clear {
|
|
@apply hidden;
|
|
}
|
|
}
|