Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwine36 committed Aug 21, 2024
1 parent d311c1e commit ecca937
Show file tree
Hide file tree
Showing 3 changed files with 6,233 additions and 5,204 deletions.
23 changes: 11 additions & 12 deletions apps/sample-nextjs/src/components/NumberInput/index.module.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@

.panel {
display: flex;
justify-content: center;
align-items: center;
font-family: inherit;
display: flex;
justify-content: center;
align-items: center;
font-family: inherit;
font-size: inherit;
}
.panel label {
margin-right: 8px;
margin-right: 8px;
}

.panel input {
font-family: inherit;
font-family: inherit;
font-size: inherit;
border: 1px solid rgba(var(--card-border-rgb), 0.15);
padding-left: 4px;
max-width: 50px;
border-radius: calc(var(--border-radius) / 2);
}
border: 1px solid rgba(var(--card-border-rgb), 0.15);
padding-left: 4px;
max-width: 50px;
border-radius: calc(var(--border-radius) / 2);
}
2 changes: 1 addition & 1 deletion crates/sample-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn greet() {
}

#[wasm_bindgen]
pub fn fibonacci(n: u64) -> u64 {
pub fn fibonacci(n: usize) -> usize {
// console_log!("fibonaccin' with {}", n);
return match n {
0 => 0,
Expand Down
Loading

0 comments on commit ecca937

Please sign in to comment.