This commit is contained in:
Boof 2023-04-12 10:54:04 +02:00 committed by GitHub
parent 37352172f7
commit d878459d81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@
<body> <body>
<div class="header"> <div class="header">
<button id="signOutButton"><h3>class="roboto">Sign out</h3></button> <button type="button" id="signOutButton"><h3>Sign out</h3></button>
</div> </div>
<div class="mainWrapper"> <div class="mainWrapper">
<h1 class="roboto">Cool ui</h1> <h1 class="roboto">Cool ui</h1>

View File

@ -1,7 +1,8 @@
.header { .header {
border-bottom: 1px solid #111; border-bottom: 1px solid #111;
padding: 0.1rem 1vw; padding: 0.1rem 1vw;
display: block; display: flex;
align-items: end;
} }
.mainWrapper { .mainWrapper {