Skip to content

Commit

Permalink
Design fixes of the authentication page (#16328)
Browse files Browse the repository at this point in the history
  • Loading branch information
timroes committed Sep 6, 2022
1 parent 5001474 commit e593adc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
21 changes: 12 additions & 9 deletions airbyte-webapp/src/packages/cloud/views/auth/Auth.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
.github {
background: #333;
color: colors.$white;
border: none;
}

.google,
Expand All @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use "../../../../../../scss/colors";
@use "../../../../../../scss/variables";

.container {
display: flex;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit e593adc

Please sign in to comment.