2022-06-05 18:56:42 +00:00
|
|
|
.button {
|
|
|
|
@apply px-4 py-2 inline-flex items-center justify-center;
|
2022-06-20 16:38:23 +00:00
|
|
|
@apply rounded text-base font-semibold transition-all duration-100;
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply focus:ring-[3px] focus:ring-offset-2 focus:ring-offset-slate-700 focus:ring-opacity-50;
|
2022-06-05 18:56:42 +00:00
|
|
|
|
2022-06-20 16:38:23 +00:00
|
|
|
/* Sizing Controls */
|
|
|
|
&.small {
|
2022-06-20 19:28:27 +00:00
|
|
|
@apply px-4 py-0 h-8 font-normal text-sm focus:ring-2;
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 16:38:23 +00:00
|
|
|
&.large {
|
|
|
|
@apply px-5 py-3;
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 16:38:23 +00:00
|
|
|
&.secondary {
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply text-slate-50 bg-transparent;
|
2022-06-05 18:56:42 +00:00
|
|
|
|
2022-06-20 16:38:23 +00:00
|
|
|
&:disabled {
|
2022-06-20 21:26:47 +00:00
|
|
|
background: transparent !important;
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-05 22:35:53 +00:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
@apply cursor-not-allowed;
|
|
|
|
}
|
2022-06-20 16:38:23 +00:00
|
|
|
|
|
|
|
&.square {
|
|
|
|
@apply p-0 w-12 h-12;
|
|
|
|
|
|
|
|
&.small {
|
|
|
|
@apply w-8 h-8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary {
|
|
|
|
@apply bg-blue-600 text-blue-50;
|
|
|
|
@apply hover:bg-blue-500 active:bg-blue-500 focus:ring-blue-400 focus:ring-opacity-75;
|
|
|
|
|
|
|
|
&.secondary {
|
|
|
|
@apply hover:bg-blue-600 active:bg-blue-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
@apply bg-blue-500/75 text-blue-200/75;
|
|
|
|
}
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply bg-slate-500 text-slate-50;
|
|
|
|
@apply hover:bg-slate-400 active:bg-slate-400 focus:ring-slate-300 focus:ring-opacity-50;
|
2022-06-20 16:38:23 +00:00
|
|
|
|
|
|
|
&.secondary {
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply hover:bg-slate-500 active:bg-slate-500;
|
2022-06-20 16:38:23 +00:00
|
|
|
}
|
2022-06-05 22:35:53 +00:00
|
|
|
|
|
|
|
&:disabled {
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply bg-slate-500/75 text-slate-200/75;
|
2022-06-05 22:35:53 +00:00
|
|
|
}
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.danger {
|
2022-12-16 02:06:14 +00:00
|
|
|
@apply bg-red-600 text-slate-50;
|
2022-06-20 16:38:23 +00:00
|
|
|
@apply hover:bg-red-500 active:bg-red-500 focus:ring-red-400 focus:ring-opacity-75;
|
|
|
|
|
|
|
|
&.secondary {
|
|
|
|
@apply hover:bg-red-600 active:bg-red-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
@apply bg-red-600/75 text-red-50/75;
|
|
|
|
}
|
2022-06-05 18:56:42 +00:00
|
|
|
}
|