Skip to content
Merged
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 web/src/i18n/i18n-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1703,7 +1703,7 @@ type RootTranslation = {
*/
addYubikey: string
/**
* A​d​d​ ​S​H​H​ ​K​e​y
* A​d​d​ ​S​S​H​ ​K​e​y
*/
addSSH: string
/**
Expand Down
13 changes: 3 additions & 10 deletions web/src/pages/auth/style.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
#auth-container {
background-color: var(--surface-frame-bg);
display: flex;
min-height: 100vh;
width: 100%;
min-height: 100dvh;
max-height: 100vh;
max-height: 100dvh;
overflow: auto;
@include media-breakpoint-up(lg) {
min-height: 100vh;
min-width: 100%;
max-height: 100vh;
height: max-content;
display: grid;
grid-template-rows: 100%;
grid-template-rows: 1fr;
grid-template-columns: 1fr 1fr;
align-content: center;
justify-content: center;
Expand All @@ -23,9 +17,9 @@
.logo-container {
grid-row: 1;
grid-column: 1;
display: none;
flex-direction: column;
align-content: center;
display: none;
align-items: center;
justify-content: center;
background-color: var(--surface-main-primary);
Expand All @@ -48,7 +42,6 @@
display: flex;
width: 100%;
height: 100%;
max-height: 100%;
grid-row: 1;
grid-column: 2;
}
Expand Down