gradient gutters

This commit is contained in:
2026-02-17 21:57:34 +01:00
parent 4dfef88f19
commit f05d6e154e
3 changed files with 11 additions and 2 deletions
+7
View File
@@ -35,5 +35,12 @@
". content ." ". content ."
". input ."; ". input .";
overflow: hidden; overflow: hidden;
background: linear-gradient(
to right,
var(--bg-secondary),
var(--bg-primary) calc(50% - var(--content-max-width) / 2 + 60px),
var(--bg-primary) calc(50% + var(--content-max-width) / 2 - 60px),
var(--bg-secondary)
);
} }
</style> </style>
@@ -45,10 +45,11 @@
<style> <style>
.callback-page { .callback-page {
grid-column: 1 / -1;
grid-row: 1 / -1;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-height: 100vh;
} }
.callback-card { .callback-card {
+2 -1
View File
@@ -53,10 +53,11 @@
<style> <style>
.login-page { .login-page {
grid-column: 1 / -1;
grid-row: 1 / -1;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-height: 100vh;
} }
.login-card { .login-card {