timetracker/frontend/src/index.css

22 lines
361 B
CSS
Raw Normal View History

2023-01-25 11:47:39 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-01-25 10:44:04 +00:00
2023-01-25 11:47:39 +00:00
form label {
@apply dark:text-slate-400;
2023-01-25 10:44:04 +00:00
}
2023-01-25 11:47:39 +00:00
form input,
select,
textarea {
@apply dark:border dark:border-slate-900 dark:bg-slate-500 dark:text-slate-100;
2023-01-25 10:44:04 +00:00
}
2023-01-25 11:47:39 +00:00
#session-table {
display: grid;
grid-template-columns: 3fr 1fr repeat(2, 2fr) 0.5fr 1fr;
2023-01-25 10:44:04 +00:00
}
2023-01-25 11:47:39 +00:00
#button-container button {
@apply mx-1;
}