Skip to content

Commit

Permalink
Reduce padding
Browse files Browse the repository at this point in the history
  • Loading branch information
creilly8 authored and siosonel committed Oct 7, 2024
1 parent 5c21add commit 804f44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/dom/radiobutton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function make_radios(opts: RadioButtonOpts): RadioApi {
.append('div')
.attr('aria-label', (d: OptionEntry) => d.title)
.style('display', opts.styles && 'display' in opts.styles ? opts.styles.display : 'block')
.style('padding', opts.styles && 'padding' in opts.styles ? opts.styles.padding : '5px')
.style('padding', opts.styles && 'padding' in opts.styles ? opts.styles.padding : '3px')
.append('label')

if (opts.styles) {
Expand Down

0 comments on commit 804f44c

Please sign in to comment.