Skip to content

Commit

Permalink
feat: 100% on chain logo and spacing (#607)
Browse files Browse the repository at this point in the history
* feat: 100% on chain badge

* style: remove unused margin

* style: positioning within the viewport of the main content optimized

* style: media query for height for smaller devices

* Run prettier

* 🤖 Selenium screenshots auto-update

Co-authored-by: Nicolas Mattia <nicolas@dfinity.org>
  • Loading branch information
peterpeterparker and nmattia authored Mar 29, 2022
1 parent 8b2cb9c commit 0cddffc
Show file tree
Hide file tree
Showing 38 changed files with 23 additions and 47 deletions.
Binary file modified screenshots/00-welcome-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/00-welcome-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/01-register-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/01-register-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/02-register-confirm-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/02-register-confirm-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/03-register-user-number-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/04-recover-method-selector-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/05-single-device-warning-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/06-main-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/06-main-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/07-welcome-back-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/07-welcome-back-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/08-new-device-flow-selection-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/09-new-device-instructions-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/10-new-device-user-number-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/10-new-device-user-number-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/11-new-device-alias-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/11-new-device-alias-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/13-new-device-show-verification-code-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/14-new-device-enter-verification-code-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/15-new-device-login-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/15-new-device-login-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/16-new-device-listed-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/16-new-device-listed-mobile.png
Binary file modified screenshots/17-about-desktop.png
Binary file modified screenshots/18-about-legacy-desktop.png
Binary file modified screenshots/19-after-removal-desktop.png
Binary file modified screenshots/19-after-removal-mobile.png
Binary file modified screenshots/20-compatibility-notice-desktop.png
Binary file modified screenshots/21-faq-desktop.png
Binary file modified screenshots/22-faq-open-desktop.png
Binary file modified screenshots/23-features-warning-desktop.png
Binary file modified screenshots/23-features-warning-mobile.png
54 changes: 15 additions & 39 deletions src/frontend/assets/ic-badge.svg

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/frontend/src/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export const showWarning = (): void => {
width: 100%;
box-sizing: border-box;
padding: 0.5em 1em;
margin: 0 0 1rem;
text-align: center;
}
Expand Down
15 changes: 8 additions & 7 deletions src/frontend/src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ body {
}

footer {
padding: 2em;
padding: 2em 2em 0;
}

.powered-by-link {
Expand Down Expand Up @@ -208,7 +208,8 @@ label {
margin-bottom: 0.5rem;
}

main::before {
main::before,
main::after {
content: "";
display: block;
flex-grow: 1;
Expand All @@ -222,11 +223,11 @@ main {
align-items: center;
}

main::after {
content: "";
display: block;
flex-grow: 2;
height: 24px;
@media (min-width: 512px) {
main {
height: auto;
min-height: 100vh;
}
}

.container {
Expand Down

0 comments on commit 0cddffc

Please sign in to comment.