Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gradient on 404 screen #428

Merged
merged 1 commit into from
Nov 21, 2023
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
10 changes: 5 additions & 5 deletions web/app/styles/error-404.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
@apply bg-color-page-faint;

.title {
@apply text-[3.5rem] mb-5 mr-20;
@apply mb-5 mr-20 text-[3.5rem];
}

.doc-page {
@apply mt-16 bg-white shadow-2xl border border-color-border-primary rounded-t-xl;
@apply mt-16 rounded-t-xl border border-color-border-primary bg-white shadow-2xl;
}

.meta-information {
Expand All @@ -18,18 +18,18 @@
}

.divider {
@apply h-[4px] bg-color-foreground-strong w-full;
@apply h-[4px] w-full bg-color-foreground-strong;
}

p {
@apply text-display-300 text-color-foreground-strong;
}

.summary {
@apply mb-6 text-display-400 pr-20;
@apply mb-6 pr-20 text-display-400;
}

.gradient-overlay {
@apply fixed w-full h-56 bottom-0 pointer-events-none bg-gradient-to-t from-color-surface-strong to-transparent;
@apply pointer-events-none fixed left-0 bottom-0 h-56 w-full bg-gradient-to-t from-color-surface-strong to-transparent;
}
}