10 lines
264 B
CSS
10 lines
264 B
CSS
@import "tailwindcss";
|
|
|
|
body {
|
|
@apply bg-[rgb(24,24,24)] text-white select-none;
|
|
}
|
|
|
|
button {
|
|
@apply bg-[rgb(48,48,48)] hover:bg-[rgb(72,72,72)] border border-[rgb(72,72,72)] hover:border-[rgb(96,96,96)] transition-colors px-2 py-1 rounded-md cursor-pointer;
|
|
}
|