feat: logout button

This commit is contained in:
Robert Perce 2026-06-01 01:29:56 -05:00
parent edcab054b5
commit 66a45a2e16
4 changed files with 14 additions and 3 deletions

View file

@ -34,7 +34,6 @@
main {
width: 100%;
max-width: 600px;
margin: auto;
}

View file

@ -16,6 +16,8 @@ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abb
body {
width: 100%;
max-width: 600px;
margin: 0 auto;
height: 100vh;
display: flex;
flex-direction: column;
@ -58,3 +60,12 @@ form label {
display: flex;
flex-direction: column;
}
nav {
display: flex;
flex-direction: row;
justify-content: flex-end;
gap: 1em;
width: 100%;
margin-bottom: 0.5em;
}

View file

@ -1,8 +1,6 @@
body {
padding-top: 2em;
font-family: sans-serif;
max-width: 600px;
margin: auto;
}
form {