2023-05-25 10:41:54 +00:00
|
|
|
.btn {
|
|
|
|
@apply inline-block rounded border border-transparent px-5 py-2 font-semibold capitalize transition;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-sm {
|
|
|
|
@apply rounded-sm px-4 py-1.5 text-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
2023-11-08 13:32:14 +00:00
|
|
|
@apply border-primary text-white bg-primary
|
|
|
|
dark:border-darkmode-primary dark:text-dark dark:bg-white;
|
2023-05-25 10:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-outline-primary {
|
2023-11-08 13:32:14 +00:00
|
|
|
@apply text-dark bg-transparent border-dark hover:bg-dark hover:text-white
|
|
|
|
dark:text-white dark:border-white dark:hover:text-dark dark:hover:bg-white;
|
2023-05-25 10:41:54 +00:00
|
|
|
}
|