mirror of
https://github.com/gurucomputing/headscale-ui.git
synced 2026-01-24 02:55:46 +00:00
24 lines
No EOL
869 B
CSS
24 lines
No EOL
869 B
CSS
/* Write your global styles here, in PostCSS syntax */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.form-input {
|
|
@apply shadow appearance-none border rounded w-full bg-base-100 py-2 px-3 text-base-content text-sm mb-3 leading-tight focus:outline-none;
|
|
}
|
|
|
|
.card-primary {
|
|
@apply grid grid-cols-1 divide-y p-2 max-w-screen-lg border mx-4 border-base-content rounded-md text-sm text-base-content shadow
|
|
}
|
|
|
|
.card-pending {
|
|
@apply flex justify-between p-1 mb-4 max-w-screen-lg border border-dashed mx-4 border-base-content rounded-md text-sm text-base-content shadow
|
|
}
|
|
|
|
.card-input {
|
|
@apply shadow appearance-none border rounded w-64 py-1 px-3 bg-base-100 text-base-content text-sm leading-tight focus:outline-none;
|
|
}
|
|
|
|
.card-select {
|
|
@apply shadow border rounded w-64 py-1 px-3 bg-base-100 text-base-content text-sm leading-tight focus:outline-2;
|
|
} |