2024-07-24 18:09:44 +08:00
|
|
|
@tailwind components;
|
|
|
|
|
|
|
|
@layer components {
|
|
|
|
.action-btn {
|
2024-10-16 11:45:25 +08:00
|
|
|
@apply inline-flex justify-center items-center cursor-pointer text-text-tertiary hover:text-text-secondary hover:bg-state-base-hover
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn-disabled {
|
|
|
|
@apply cursor-not-allowed
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn-xl {
|
|
|
|
@apply p-2 w-9 h-9 rounded-lg
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn-l {
|
2024-07-29 13:19:15 +08:00
|
|
|
@apply p-1.5 w-8 h-8 rounded-lg
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* m is for the regular button */
|
|
|
|
.action-btn-m {
|
|
|
|
@apply p-0.5 w-6 h-6 rounded-lg
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn-xs {
|
2024-07-29 13:19:15 +08:00
|
|
|
@apply p-0 w-4 h-4 rounded
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn.action-btn-active {
|
2024-10-16 11:45:25 +08:00
|
|
|
@apply text-text-accent bg-state-accent-active hover:bg-state-accent-active-alt
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn.action-btn-disabled {
|
2024-10-16 11:45:25 +08:00
|
|
|
@apply text-text-disabled
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-btn.action-btn-destructive {
|
2024-10-16 11:45:25 +08:00
|
|
|
@apply text-text-destructive bg-state-destructive-hover
|
2024-07-24 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|