Skip to content

Commit

Permalink
Fixed 'g' (#7656)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Platov <[email protected]>
  • Loading branch information
SasLord authored Jan 13, 2025
1 parent 8deea47 commit c5c4af9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/theme/styles/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
.heading-medium-16,
.heading-bold-16 {
font-size: 1rem;
line-height: 1.125rem;
// line-height: 1.125rem;
}
.heading-ui-H2 {
font-size: 1.125rem;
Expand Down
6 changes: 5 additions & 1 deletion packages/ui/src/components/Breadcrumb.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@
<Icon {icon} size={'small'} {iconProps} />
</div>
{/if}
<span class="{size === 'large' ? 'heading-medium-16' : 'font-regular-14'} hulyBreadcrumb-label overflow-label">
<span
class="{size === 'large'
? 'heading-medium-16'
: 'font-regular-14'} line-height-auto hulyBreadcrumb-label overflow-label"
>
{#if label}<Label {label} />{/if}
{#if title}{title}{/if}
</span>
Expand Down
2 changes: 1 addition & 1 deletion plugins/chunter-resources/src/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
</div>
{/if}
{#if label}
<span class="secondary-textColor overflow-label heading-medium-16 mr-2">{label}</span>
<span class="secondary-textColor overflow-label heading-medium-16 line-height-auto mr-2">{label}</span>
{:else if intlLabel}
<div class="secondary-textColor overflow-label mr-2">
<Label label={intlLabel} />
Expand Down

0 comments on commit c5c4af9

Please sign in to comment.