SimpleNotes/css/src/button.pcss

44 lines
567 B
Plaintext

.btn {
@apply font-bold py-2 px-4 rounded;
&:focus {
@apply outline-none shadow-outline;
}
}
.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;
}
}