2022-12-31 13:18:27 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
2023-01-03 18:01:10 +00:00
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
form label {
|
2023-01-05 21:00:08 +00:00
|
|
|
@apply dark:text-slate-400;
|
2023-01-03 18:01:10 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 21:00:08 +00:00
|
|
|
form input,
|
|
|
|
select,
|
|
|
|
textarea {
|
|
|
|
@apply dark:border dark:border-slate-900 dark:bg-slate-500 dark:text-slate-100;
|
2023-01-03 18:01:10 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 21:00:08 +00:00
|
|
|
#session-table {
|
|
|
|
display: grid;
|
2023-01-15 22:14:28 +00:00
|
|
|
grid-template-columns: 3fr 1fr repeat(2, 2fr) 0.5fr 1fr;
|
2023-01-05 21:00:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#button-container button {
|
|
|
|
@apply mx-1;
|
|
|
|
}
|