Skip to content

Commit b4afe8d

Browse files
authored
fix sidebar right border for RTL (#78)
1 parent d1edb79 commit b4afe8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/components/layouts/app/header.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class="flex h-full w-full items-center justify-center rounded-lg bg-neutral-200
8989
</flux:header>
9090

9191
<!-- Mobile Menu -->
92-
<flux:sidebar stashable sticky class="lg:hidden border-r border-zinc-200 bg-zinc-50 dark:border-zinc-700 dark:bg-zinc-900">
92+
<flux:sidebar stashable sticky class="lg:hidden border-e border-zinc-200 bg-zinc-50 dark:border-zinc-700 dark:bg-zinc-900">
9393
<flux:sidebar.toggle class="lg:hidden" icon="x-mark" />
9494

9595
<a href="{{ route('dashboard') }}" class="ms-1 flex items-center space-x-2 rtl:space-x-reverse" wire:navigate>

resources/views/components/layouts/app/sidebar.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@include('partials.head')
55
</head>
66
<body class="min-h-screen bg-white dark:bg-zinc-800">
7-
<flux:sidebar sticky stashable class="border-r border-zinc-200 bg-zinc-50 dark:border-zinc-700 dark:bg-zinc-900">
7+
<flux:sidebar sticky stashable class="border-e border-zinc-200 bg-zinc-50 dark:border-zinc-700 dark:bg-zinc-900">
88
<flux:sidebar.toggle class="lg:hidden" icon="x-mark" />
99

1010
<a href="{{ route('dashboard') }}" class="me-5 flex items-center space-x-2 rtl:space-x-reverse" wire:navigate>

resources/views/components/layouts/auth/split.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</head>
66
<body class="min-h-screen bg-white antialiased dark:bg-linear-to-b dark:from-neutral-950 dark:to-neutral-900">
77
<div class="relative grid h-dvh flex-col items-center justify-center px-8 sm:px-0 lg:max-w-none lg:grid-cols-2 lg:px-0">
8-
<div class="bg-muted relative hidden h-full flex-col p-10 text-white lg:flex dark:border-r dark:border-neutral-800">
8+
<div class="bg-muted relative hidden h-full flex-col p-10 text-white lg:flex dark:border-e dark:border-neutral-800">
99
<div class="absolute inset-0 bg-neutral-900"></div>
1010
<a href="{{ route('home') }}" class="relative z-20 flex items-center text-lg font-medium" wire:navigate>
1111
<span class="flex h-10 w-10 items-center justify-center rounded-md">

0 commit comments

Comments
 (0)