Skip to content

Commit

Permalink
fix: textarea top mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
cr0sh committed Jul 16, 2023
1 parent bff2ee7 commit 469cf05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ fn output(props: &OutputProperties) -> Html {
});
html! {
<>
<div class={ classes!("text-md", "my-2") }>
<div class={ classes!("text-md", "lg:text-lg", "my-2") }>
<span class={ classes!("font-mono", "bg-slate-100", "px-1", "rounded-sm") }>{"syn::parse::<"}</span>
<select onchange={onmethodchange} class={ classes!("font-mono", "text-center", "appearance-none", "px-0.5") }>
<option value="TokenStream">{ "TokenStream" }</option>
Expand Down

0 comments on commit 469cf05

Please sign in to comment.