fix: font sizes
This commit is contained in:
parent
afac1f62ca
commit
b75ca193a2
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ export function Textbox({ onChange, className, ...inputProps }) {
|
||||||
|
|
||||||
function Checkbox({ label, value, onChange, disabled = false }) {
|
function Checkbox({ label, value, onChange, disabled = false }) {
|
||||||
return (
|
return (
|
||||||
<label>
|
<label className="text-sm">
|
||||||
<input
|
<input
|
||||||
className={cx(
|
className={cx(
|
||||||
'bg-background text-sm border border-muted focus:outline-none focus:ring-0 focus:border-foreground',
|
'bg-background text-sm border border-muted focus:outline-none focus:ring-0 focus:border-foreground',
|
||||||
|
|
@ -96,7 +96,7 @@ function NumberSlider({ value, onChange, step = 1, ...rest }) {
|
||||||
|
|
||||||
function FormItem({ label, children, sublabel }) {
|
function FormItem({ label, children, sublabel }) {
|
||||||
return (
|
return (
|
||||||
<div className="grid gap-2">
|
<div className="grid gap-2 text-sm">
|
||||||
<label className="text-sm">{label}</label>
|
<label className="text-sm">{label}</label>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue