ElmDemo/UI/scss/app.scss

25 lines
400 B
SCSS
Raw Normal View History

2023-06-15 13:21:48 +00:00
@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;
}