Files
SimpleNotes/css/src/button.pcss
T
2023-05-09 22:40:39 +02:00

49 lines
632 B
Plaintext

.btn {
@apply font-semibold py-2 px-4 rounded;
&:focus {
@apply outline-none ring;
}
&:hover {
--CASL: 1;
@apply font-extrabold;
}
}
.btn-teal {
@apply bg-teal-400 text-gray-800;
&:focus {
@apply bg-teal-600;
}
&:hover {
@apply bg-teal-600;
}
}
.btn-green {
@apply bg-green-400 text-gray-800;
&:focus {
@apply bg-green-600;
}
&:hover {
@apply bg-green-600;
}
}
.btn-red {
@apply bg-red-400 text-gray-800;
&:focus {
@apply bg-red-600;
}
&:hover {
@apply bg-red-600;
}
}