Skip to content

Commit c0f8a93

Browse files
fix: mfa login screen styles (#629)
1 parent b724e2f commit c0f8a93

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

web/src/i18n/i18n-types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ type RootTranslation = {
17031703
*/
17041704
addYubikey: string
17051705
/**
1706-
* A​d​d​ ​S​H​H​ ​K​e​y
1706+
* A​d​d​ ​S​S​H​ ​K​e​y
17071707
*/
17081708
addSSH: string
17091709
/**

web/src/pages/auth/style.scss

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
#auth-container {
22
background-color: var(--surface-frame-bg);
33
display: flex;
4-
min-height: 100vh;
4+
width: 100%;
55
min-height: 100dvh;
6-
max-height: 100vh;
7-
max-height: 100dvh;
86
overflow: auto;
97
@include media-breakpoint-up(lg) {
10-
min-height: 100vh;
11-
min-width: 100%;
12-
max-height: 100vh;
13-
height: max-content;
148
display: grid;
15-
grid-template-rows: 100%;
9+
grid-template-rows: 1fr;
1610
grid-template-columns: 1fr 1fr;
1711
align-content: center;
1812
justify-content: center;
@@ -23,9 +17,9 @@
2317
.logo-container {
2418
grid-row: 1;
2519
grid-column: 1;
26-
display: none;
2720
flex-direction: column;
2821
align-content: center;
22+
display: none;
2923
align-items: center;
3024
justify-content: center;
3125
background-color: var(--surface-main-primary);
@@ -48,7 +42,6 @@
4842
display: flex;
4943
width: 100%;
5044
height: 100%;
51-
max-height: 100%;
5245
grid-row: 1;
5346
grid-column: 2;
5447
}

0 commit comments

Comments
 (0)