feat: ability to create a task #14

Merged
matous-volf merged 12 commits from feat/task-create into main 2024-08-22 21:40:47 +00:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit a882f50f01 - Show all commits

View File

@ -6,6 +6,9 @@ use dioxus::prelude::*;
#[component]
pub(crate) fn App() -> Element {
rsx! {
Router::<Route> {}
div {
class: "min-h-screen text-white bg-neutral-800",
Router::<Route> {}
}
}
}

View File

@ -1,8 +1,15 @@
/* stylelint-disable */
/* noinspection CssInvalidAtRule */
@tailwind base;
/* noinspection CssInvalidAtRule */
@tailwind components;
/* noinspection CssInvalidAtRule */
@tailwind utilities;
html, body, #main {
/* noinspection CssInvalidAtRule */
@apply min-h-screen;
}
/* stylelint-enable */