2018-03-31 21:33:10 +00:00
|
|
|
.btn {
|
|
|
|
@apply .rounded;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Button Colors
|
|
|
|
*/
|
|
|
|
&.btn-blue {
|
|
|
|
@apply .bg-blue .border-blue-dark .border .text-white;
|
|
|
|
|
2018-04-07 21:17:51 +00:00
|
|
|
&:hover:enabled {
|
2018-03-31 21:33:10 +00:00
|
|
|
@apply .bg-blue-dark .border-blue-darker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Button Sizes
|
|
|
|
*/
|
|
|
|
&.btn-jumbo {
|
|
|
|
@apply .p-4 .w-full .uppercase .tracking-wide .text-sm;
|
|
|
|
}
|
2018-04-07 21:17:51 +00:00
|
|
|
|
2018-04-08 20:18:13 +00:00
|
|
|
&:disabled, &.disabled {
|
2018-04-07 21:17:51 +00:00
|
|
|
opacity: 0.55;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-03-31 21:33:10 +00:00
|
|
|
}
|