Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion layout/pages/home/home-background.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
</style>

<div class="home-banner-background transition-fade fixed top-0 left-0 w-screen h-screen scale-125 sm:scale-110 box-border will-change-transform bg-cover">
<div class="home-banner-background fixed top-0 left-0 w-screen h-screen scale-125 sm:scale-110 box-border will-change-transform bg-cover">
<img src="<%- url_for(theme.home_banner.image.light) %>" alt="home-banner-background" class="w-full h-full object-cover dark:hidden">
<img src="<%- url_for(theme.home_banner.image.dark) %>" alt="home-banner-background" class="w-full h-full object-cover hidden dark:block">
</div>
Expand Down
2 changes: 1 addition & 1 deletion layout/pages/home/home-banner.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
backdrop-filter: none !important;
}
</style>
<div class="home-banner-background transition-fade fixed top-0 left-0 w-screen h-screen scale-125 sm:scale-110 box-border will-change-transform bg-cover">
<div class="home-banner-background fixed top-0 left-0 w-screen h-screen scale-125 sm:scale-110 box-border will-change-transform bg-cover">
<img src="<%- url_for(theme.home_banner.image.light) %>" alt="home-banner-background" class="w-full h-full object-cover dark:hidden">
<img src="<%- url_for(theme.home_banner.image.dark) %>" alt="home-banner-background" class="w-full h-full object-cover hidden dark:block">
</div>
Expand Down
2 changes: 1 addition & 1 deletion source/css/layout/animations.styl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.transition-fade
transition 0.4s
transition opacity 0.4s ease
opacity 1

.transition-fade-up
Expand Down
Loading