This commit is contained in:
Erik 2022-03-24 21:35:58 +02:00
parent d9734f568e
commit 963d68cfe2
No known key found for this signature in database
GPG Key ID: FEFF4B220DDF5589
3 changed files with 23 additions and 7 deletions

View File

@ -12,7 +12,7 @@ header {
footer { footer {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
min-height: 10vh; height: 10vh;
width: 100%; width: 100%;
background-color: var(--orange); background-color: var(--orange);
align-items: center; align-items: center;
@ -48,7 +48,7 @@ footer {
.background { .background {
background-color: var(--dark-blue); background-color: var(--dark-blue);
height: 96vh; height: 86vh;
} }
.foreground { .foreground {

View File

@ -4,6 +4,11 @@
flex-direction: column; flex-direction: column;
} }
.userlist {
height: 90%;
overflow-y: auto;
}
.user { .user {
position: relative; position: relative;
height: 4vh; height: 4vh;
@ -19,6 +24,11 @@
margin: auto; margin: auto;
} }
#usertag {
text-align: left;
width: 50%;
}
.delete-btn { .delete-btn {
background-color: rgb(255, 98, 98); background-color: rgb(255, 98, 98);
border-radius: 5px; border-radius: 5px;

View File

@ -1,6 +1,3 @@
.dropdown {
}
.dropdown-list { .dropdown-list {
display: none; display: none;
@ -8,12 +5,12 @@
z-index: 1; z-index: 1;
background-color: var(--lighter-gray); background-color: var(--lighter-gray);
min-width: 10vw; min-width: 10vw;
min-height: 15vh; /* min-height: 15vh; */
max-height: 35vh; max-height: 35vh;
overflow-y: auto; overflow-y: auto;
/* left: 50%; */ /* left: 50%; */
/* top: 3vh; */ /* top: 3vh; */
/* transform: translate(-50%); */ transform: translate(-25%);
} }
.dropdown:hover .dropdown-list { .dropdown:hover .dropdown-list {
@ -44,3 +41,12 @@
.dropdown input { .dropdown input {
height: 1.6vh; height: 1.6vh;
} }
.popup {
position: absolute;
/* width: 50vw; */
width: 100%;
height: 50vh;
background-color: blueviolet;
left: 0;
}