feat: ability to create a task #14
@ -6,6 +6,9 @@ use dioxus::prelude::*;
|
|||||||
#[component]
|
#[component]
|
||||||
pub(crate) fn App() -> Element {
|
pub(crate) fn App() -> Element {
|
||||||
rsx! {
|
rsx! {
|
||||||
Router::<Route> {}
|
div {
|
||||||
|
class: "min-h-screen text-white bg-neutral-800",
|
||||||
|
Router::<Route> {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
/* stylelint-disable */
|
/* stylelint-disable */
|
||||||
|
|
||||||
/* noinspection CssInvalidAtRule */
|
/* noinspection CssInvalidAtRule */
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
/* noinspection CssInvalidAtRule */
|
/* noinspection CssInvalidAtRule */
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
/* noinspection CssInvalidAtRule */
|
/* noinspection CssInvalidAtRule */
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
html, body, #main {
|
||||||
|
/* noinspection CssInvalidAtRule */
|
||||||
|
@apply min-h-screen;
|
||||||
|
}
|
||||||
|
|
||||||
/* stylelint-enable */
|
/* stylelint-enable */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user