Skip to content

Commit

Permalink
fix: ui font list
Browse files Browse the repository at this point in the history
  • Loading branch information
paring-chan committed Jan 4, 2025
1 parent beccb50 commit 70d5e0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/lib/components/form/FormHintArea.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
interface Props {
modal?: boolean
children?: Snippet
columns?: number
}
const { modal, children }: Props = $props()
const { modal, children, columns }: Props = $props()
</script>

<div class="form-hint-area" class:modal>
<div class="form-hint-area" class:modal style="--hint-columns: {columns};">
{@render children?.()}
</div>

Expand Down
3 changes: 2 additions & 1 deletion src/lib/stylesheets/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
@use 'utils/grid';
@use 'utils/table';

$normal_font: 'IBM Plex Sans KR', sans-serif;
$normal_font: 'IBM Plex Sans KR', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;

:root {
--color-bg-solid: 35, 43, 90;
Expand Down

0 comments on commit 70d5e0d

Please sign in to comment.