25 lines
400 B
SCSS
25 lines
400 B
SCSS
![]() |
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
.app {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
.btn {
|
||
|
@apply flex border border-solid h-8 cursor-pointer rounded drop-shadow-lg text-center items-center justify-center;
|
||
|
}
|
||
|
|
||
|
.btn-green {
|
||
|
@apply bg-green-500 text-white hover:bg-green-300 hover:font-bold;
|
||
|
}
|
||
|
|
||
|
.btn-blue {
|
||
|
@apply bg-blue-400 text-white;
|
||
|
}
|
||
|
|
||
|
.btn-stone {
|
||
|
@apply bg-stone-200 text-black border-stone-300;
|
||
|
}
|