2020-09-23 15:19:36 -03:00
|
|
|
.root {
|
2020-09-23 16:51:06 -03:00
|
|
|
@apply cursor-pointer inline-flex items-center px-8 py-2 rounded-sm border border-transparent text-base leading-6 text-white bg-black transition ease-in-out duration-150 shadow-sm font-medium;
|
2020-09-23 15:19:36 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.root:hover {
|
|
|
|
@apply bg-white text-black border-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.root:focus {
|
|
|
|
@apply border-gray-700 shadow-outline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.root:active {
|
|
|
|
@apply bg-gray-700;
|
|
|
|
}
|