Skip to content

Commit

Permalink
pump wasm bindgen
Browse files Browse the repository at this point in the history
  • Loading branch information
hitchhooker committed Jan 14, 2024
1 parent dd35004 commit 8a80b64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Trunk.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ command_arguments = [
watch = ["app/index.scss", "app/src"]

[tools]
wasm_bindgen = "0.2.89"
wasm_bindgen = "0.2.90"

[serve]
address = "0.0.0.0"
2 changes: 1 addition & 1 deletion app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde = { version = "1", features = ["derive"] }


# dependecies for client (enable when csr or hydrate set)
wasm-bindgen = { version = "0.2.89" }
wasm-bindgen = { version = "0.2.90" }
log = "0.4.20"
cached = { version = "0.47.0", optional = true }
console_log = { version = "1"}
Expand Down
9 changes: 4 additions & 5 deletions app/style/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
.hidden{display:none;}
.h-10{height:2.5rem;}
.h-16{height:4rem;}
.h-35vh{height:35vh;}
.h-4{height:1rem;}
.h-50vh{height:50vh;}
.h-full{height:100%;}
.min-h-screen{min-height:100vh;}
Expand All @@ -50,10 +48,13 @@
.justify-between{justify-content:space-between;}
.gap-6{gap:1.5rem;}
.space-x-1>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.25rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.25rem * var(--un-space-x-reverse));}
.divide-x>:not([hidden])~:not([hidden]){--un-divide-x-reverse:0;border-left-width:calc(1px * calc(1 - var(--un-divide-x-reverse)));border-right-width:calc(1px * var(--un-divide-x-reverse));}
.divide-gray-200>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgba(229,231,235,var(--un-divide-opacity));}
.overflow-auto{overflow:auto;}
.overflow-x-auto{overflow-x:auto;}
.overflow-x-scroll{overflow-x:scroll;}
.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.whitespace-pre-wrap{white-space:pre-wrap;}
.border{border-width:1px;}
.border-0{border-width:0;}
.border-4{border-width:4px;}
Expand Down Expand Up @@ -88,6 +89,7 @@
.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}
.pl-5{padding-left:1.25rem;}
.text-center{text-align:center;}
.text-left{text-align:left;}
.text-2xl{font-size:1.5rem;line-height:2rem;}
.text-sm{font-size:0.875rem;line-height:1.25rem;}
.text-xl{font-size:1.25rem;line-height:1.75rem;}
Expand All @@ -112,9 +114,6 @@
.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}
@media (min-width: 768px){
.md\:block{display:block;}
.md\:w-10\/100{width:10%;}
.md\:w-23\/100{width:23%;}
.md\:w-33\/100{width:33%;}
.md\:w-40{width:10rem;}
.md\:px-6{padding-left:1.5rem;padding-right:1.5rem;}
.md\:text-4xl{font-size:2.25rem;line-height:2.5rem;}
Expand Down

0 comments on commit 8a80b64

Please sign in to comment.