Skip to content

Commit 54d1198

Browse files
authored
Fix RTL for controls and style on summary (#433)
1 parent a58ce62 commit 54d1198

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/settings/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
});
2020
</script>
2121

22-
<div class="grid grid-rows-[auto,1fr]" style="height:100vh;height:100dvh; font-family: initial;">
22+
<div class="grid grid-rows-[auto,1fr]" style="height:100vh;height:100dvh; font-family: initial;" dir={$direction}>
2323
<div class="navbar">
2424
<Navbar>
2525
<!-- <div slot="left-buttons" /> -->
@@ -52,7 +52,7 @@
5252
/>
5353
</label>
5454
{#if setting.summary}
55-
<div class="settings-summary py-0 pl-1">
55+
<div class="settings-summary py-0 ps-1">
5656
{$t[setting.summary]}
5757
</div>
5858
{/if}

0 commit comments

Comments
 (0)