8000 Update font size and spacing on Radio Input component by laurakwhit · Pull Request #2760 · temporalio/ui · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update font size and spacing on Radio Input component #2760

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/holocene/radio-input/radio-group.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
});
</script>

<div class={merge('flex flex-col gap-2 p-1', className)} {...$$restProps}>
<div class={merge('flex flex-col gap-4 p-1', className)} {...$$restProps}>
{#if description}
<p class="text-sm font-medium">{description}</p>
{/if}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/holocene/radio-input/radio-input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
const { name, group } = ctx;
</script>

<div class="flex flex-col gap-1">
<div>
<Label {disabled} class={className}>
<input
bind:group={$group}
Expand All @@ -62,7 +62,7 @@

<style lang="postcss">
.description {
@apply ml-7 text-xs font-normal text-primary;
@apply ml-7 text-sm font-normal text-primary;
}

input[type='radio'] {
Expand Down
Loading
0