mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 20:19:48 +01:00
- Updated background styles in event join page to a solid color. - Simplified button styles across various components, replacing complex gradient backgrounds with utility classes. - Adjusted layout and spacing in profile dropdown and user menu for improved accessibility and readability. - Enhanced alert and badge components with new styling classes for better visual consistency. - Refined tab component styles for better alignment and spacing. - Cleaned up button component attributes for clarity and maintainability. - Improved test readability by formatting multiline statements.
24 lines
564 B
CSS
24 lines
564 B
CSS
@import "tailwindcss";
|
|
@import './theme-config.css';
|
|
@plugin "daisyui";
|
|
|
|
@utility btn {
|
|
@apply rounded-full !font-display text-small-body;
|
|
}
|
|
|
|
@utility input {
|
|
@apply rounded-full focus:outline-none focus-within:outline-none focus:border-2 focus-within:border-2 !font-display text-small-body transition-all;
|
|
}
|
|
|
|
@utility select {
|
|
@apply rounded-full focus:outline-none focus-within:outline-none focus:border-2 focus-within:border-2 !font-display text-small-body transition-all;
|
|
}
|
|
|
|
@utility label {
|
|
@apply ml-2;
|
|
}
|
|
|
|
@utility fieldset-legend {
|
|
@apply ml-3;
|
|
}
|