Skip to content

Commit

Permalink
Add logo on top and remove spacing (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikrothenberger committed Jun 7, 2022
1 parent b7fa2e6 commit 352058e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Binary file modified screenshots/24-authenticate-known-anchor-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/24-authenticate-known-anchor-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/25-authenticate-unknown-anchor-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/25-authenticate-unknown-anchor-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions src/frontend/src/flows/authenticate/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { html, render } from "lit-html";
import { editIcon } from "../../components/icons";
import { editIcon, icLogo } from "../../components/icons";
import { navbar } from "../../components/navbar";
import { footer } from "../../components/footer";
import {
Expand Down Expand Up @@ -74,7 +74,7 @@ const pageContent = (hostName: string, userNumber?: bigint) => html` <style>
}
#registerButton {
margin: 3rem 0;
margin: 0.5rem 0 1rem 0;
}
.hostName {
Expand All @@ -83,7 +83,7 @@ const pageContent = (hostName: string, userNumber?: bigint) => html` <style>
}
.sectionTitle {
margin: 1rem 0 0.5rem 0;
margin: 0.5rem 0 0.5rem 0;
font-size: 1rem;
font-weight: normal;
color: black;
Expand All @@ -97,10 +97,11 @@ const pageContent = (hostName: string, userNumber?: bigint) => html` <style>
border: none;
border-top-color: var(--grey-050);
border-top-style: solid;
margin: 1rem 0;
margin: 0.5rem 0;
}
</style>
<div class="container">
${icLogo}
<h1>Authorize Authentication</h1>
<h2 class="sectionTitle">Application URL</h2>
<div class="highlightBox hostName">${hostName}</div>
Expand Down

0 comments on commit 352058e

Please sign in to comment.