Skip to content

Commit

Permalink
init tailwind syntax template
Browse files Browse the repository at this point in the history
  • Loading branch information
Freshcobar committed Dec 9, 2023
1 parent ca8f6ee commit a084bce
Show file tree
Hide file tree
Showing 21 changed files with 878 additions and 31 deletions.
142 changes: 123 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@ leptos = { version = "0.5", features = ["serde", "nightly"] }
leptos_axum = { version = "0.5", optional = true }
leptos_meta = { version = "0.5", features = ["nightly"] }
leptos_router = { version = "0.5" , features = ["nightly"] }
leptos-use = "0.9"
log = "0.4"
phosphor-leptos = "0.1"
serde = { version = "1", features = ["derive"] }
simple_logger = "4"
thiserror = "1.0"
tokio = { version = "1.33", optional = true }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.4", features = ["fs"], optional = true }
tracing = { version = "0.1", optional = true }
wasm-bindgen = "=0.2.87"
wasm-bindgen = "=0.2.89"


[features]
hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"]
Expand All @@ -38,6 +41,7 @@ ssr = [
"leptos/ssr",
"leptos_meta/ssr",
"leptos_router/ssr",
"leptos-use/ssr",
]

[package.metadata.cargo-all-features]
Expand Down
8 changes: 7 additions & 1 deletion input.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

@layer base {
[inert] ::-webkit-scrollbar {
display: none;
}
}
47 changes: 47 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"devDependencies": {
"tailwindcss": "^3.3.5"
"tailwindcss": "^3.3.5",
"@tailwindcss/typography": "^0.5.10"
}
}
Binary file added public/fonts/inter.ttf
Binary file not shown.
Loading

0 comments on commit a084bce

Please sign in to comment.