1
0
mirror of synced 2026-01-07 18:06:03 -05:00

Design fixes of the authentication page (#16328)

This commit is contained in:
Tim Roes
2022-09-06 17:47:14 +02:00
committed by GitHub
parent 50014742f3
commit e593adcdd9
5 changed files with 18 additions and 12 deletions

View File

@@ -2,21 +2,22 @@
.container {
display: flex;
flex-direction: column;
flex-direction: row;
width: 100%;
height: 100%;
background: colors.$white;
}
.leftSide {
display: flex;
flex-direction: column;
overflow-y: auto;
width: 100%;
padding: 20px 36px 39px 46px;
}
.rightSide {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
display: none;
}
.rightSideFrame {
@@ -26,10 +27,12 @@
overflow: hidden;
}
@media (min-width: 992px) and (min-height: 720px) {
.container {
flex-direction: row;
height: 100%;
@media (min-width: 992px) {
.rightSide {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
}
.leftSide,

View File

@@ -45,6 +45,7 @@
.github {
background: #333;
color: colors.$white;
border: none;
}
.google,
@@ -59,7 +60,6 @@
padding: vars.$spacing-md;
gap: vars.$spacing-md;
border-radius: vars.$border-radius-sm;
border: none;
transition: all vars.$transition;
cursor: pointer;

View File

@@ -8,8 +8,8 @@ import { Header } from "./Header";
const MainBlock = styled.div`
width: 100%;
height: calc(100% - 100px);
display: flex;
flex: 1 0 auto;
align-items: center;
justify-content: center;
`;

View File

@@ -1,4 +1,5 @@
@use "../../../../../../scss/colors";
@use "../../../../../../scss/variables";
.container {
display: flex;
@@ -7,12 +8,12 @@
.link {
text-decoration: none;
margin-top: variables.$spacing-2xl;
.content {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 17px;
.icon {
margin-right: 10px;

View File

@@ -1,10 +1,12 @@
@use "../../../../../../scss/colors";
@use "../../../../../../scss/variables";
.links {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-bottom: variables.$spacing-xl;
.formLink {
font-size: 11px;