feat: Initial purchase order views, login seems to be broken though.

This commit is contained in:
2025-01-17 12:58:32 -05:00
parent e1d07008a1
commit be0b5a6033
18 changed files with 534 additions and 288 deletions

View File

@@ -26,9 +26,11 @@ h1 { font-size: 2.5em; }
overflow: hidden;
}
header {
.header {
position: sticky;
background-color: var(--dark-bg);
color: var(--primary);
top: 0;
padding: 10px 0;
height: 60px;
border-bottom: 1px solid grey;
@@ -97,6 +99,10 @@ form {
text-align: center;
}
form .label {
text-align: right;
}
#user-form input {
width: 100%;
margin: 20px;
@@ -142,6 +148,7 @@ select {
padding: 10px 20px;
width: 100%;
margin-bottom: 10px;
font-size: 1.2em;
}
option {
@@ -291,11 +298,12 @@ a.toggle, a img.toggle {
.float {
z-index: 1;
position: absolute;
top: 60px;
top: 0;
left: 0;
width: 100%;
background-color: #14141f;
padding: 20px;
display: flex;
}
.float .closebtn {