Skip to content

Commit

Permalink
🔀 Merge login UI flow revamp
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Jun 1, 2022
2 parents 273d9d5 + 1a8045d commit 7793159
Show file tree
Hide file tree
Showing 65 changed files with 4,413 additions and 1,269 deletions.
1 change: 1 addition & 0 deletions assets/_sliding-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $sliding-menu-narrow-width: 260px;
bottom: 0;

width: $sliding-menu-width;
min-height: 100vh;

background-color: $like-gray-1;

Expand Down
5 changes: 5 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ a, a:hover, a:focus, a:visited
max-width: 400px;
max-height: 289px;
}

/* HACK: Fix for vendor CSS overwritten WalletConnect style */
.walletconnect-modal__headerLogo {
height: 21px !important;
}
10 changes: 7 additions & 3 deletions assets/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/* sliding menu style for global */
@import "sliding-menu";

@import "v2/global";

* {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -154,8 +156,7 @@ a,
.lc-page-wrapper {
display: flex;
flex-direction: column;

min-height: 100vh;
flex-grow: 1;

.lc-page-content {
flex-grow: 1;
Expand All @@ -171,7 +172,6 @@ a,
}
}


.lc-container-0,
.lc-container-1,
[class^="lc-container-2"],
Expand Down Expand Up @@ -608,6 +608,10 @@ $line-height-map: (
}

.lc-bg- {
&white {
background-color: white;
}

&transparent {
background-color: transparent;
}
Expand Down
14 changes: 14 additions & 0 deletions assets/logo/liker-land.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
97 changes: 97 additions & 0 deletions assets/v2/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
html * {
font-family: 'Open Sans', sans-serif;
}

.v2-card-view {
border-radius: 24px;
background-color: #fff;
}

.v2-card-view__content {
padding: 32px 24px;
}

.v2-modal__title {
text-align: center;

color: #4a4a4a;

font-size: 16px;
line-height: 22px;
}

.v2-modal__description {
margin-top: 16px;

text-align: center;

color: #9b9b9b;

font-size: 16px;
line-height: 22px;
}

.v2-modal__actions {
display: grid;
align-items: center;
grid-auto-flow: column;
column-gap: 8px;
justify-content: center;

margin-top: 24px;
}

.v2-form,
.v2-form__content,
.v2-form__body {
display: grid;
grid-auto-rows: auto;
row-gap: 12px;
}
.v2-form__header,
.v2-form__footer {
display: flex;
justify-content: space-between;
}

.v2-form__footer {
margin-top: 24px;
}

.v2-form__header-left-slot,
.v2-form__header-right-slot,
.v2-form__footer-left-slot,
.v2-form__footer-right-slot {
display: flex;
align-items: center;
}

.v2-form__header-left-slot,
.v2-form__footer-left-slot {
justify-content: flex-start;

margin-right: auto;
}

.v2-form__header-right-slot,
.v2-form__footer-right-slot {
justify-content: flex-end;

margin-left: auto;
}

.v2-form__header h2 {
margin: 0 12px;

color: #28646E;

font-size: 16px;
line-height: 1.25;
}

.v2-form__body {
color: #9b9b9b;

font-size: 16px;
line-height: 1.375;
}
15 changes: 15 additions & 0 deletions assets/v2/icons/liker-land-app-qrcode.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7793159

Please sign in to comment.