Skip to content

Commit

Permalink
style: update font size and class names for textbox and textarea elem…
Browse files Browse the repository at this point in the history
…ents
  • Loading branch information
PavelLaptev authored and gitbutler-client committed Feb 26, 2024
1 parent 929af8a commit 8dbeadd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gitbutler-ui/src/lib/components/TextArea.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

<div class="textarea-wrapper">
{#if label}
<label class="textbox__label font-base-13 text-semibold" for={id}>
<label class="textbox__label text-base-13 text-semibold" for={id}>
{label}
</label>
{/if}
<textarea
class="text-input textarea"
class="text-input text-base-body-13 textarea"
bind:value
{disabled}
{id}
Expand Down
2 changes: 1 addition & 1 deletion gitbutler-ui/src/lib/components/TextBox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<div class="textbox" bind:this={element} class:wide>
{#if label}
<label class="textbox__label font-base-13 text-semibold" for={id}>
<label class="textbox__label text-base-13 text-semibold" for={id}>
{label}
</label>
{/if}
Expand Down

0 comments on commit 8dbeadd

Please sign in to comment.