Skip to content

Commit

Permalink
fix(kit): correct paddings for RadioBlock, CheckboxBlock (#8081)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlufy authored Jul 12, 2024
1 parent 0e88271 commit 0aa0458
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
}

:host[data-size='s']._hidden_input & {
padding: 0 1rem;
padding: 0 var(--tui-padding-s);
}

:host[data-size='m']._hidden_input & {
padding: 0 1.5rem;
padding: 0 var(--tui-padding-m);
}

:host[data-size='l']._hidden_input & {
padding: 0 2.25rem;
padding: 0 var(--tui-padding-l);
}
}

Expand Down

0 comments on commit 0aa0458

Please sign in to comment.