Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions resources/css/core/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@

main {
@apply ps-0 md:ps-46;
/* Only padding because we don't wand to transition the color when we switch between light/dark mode */
transition: padding 0.3s ease-in-out;
/* Wait for Vue to load before allowing this transition otherwise you see the Sidebar animate in on load in Firefox (and sometimes Safari) */
body:has([data-v-app]) & {
/* Only padding because we don't wand to transition the color when we switch between light/dark mode */
transition: padding 0.3s ease-in-out;
}
}

.nav-closed main {
Expand Down
Loading