Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
deadline got the ux treatment
Browse files Browse the repository at this point in the history
  • Loading branch information
matt01y committed May 20, 2024
1 parent ca48d4d commit 2d3ecc2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/assets/styles/mainpage.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
--sidebar-width: 80px;
--primary-dark: #5f69cc;
--primary-light: #b2b1ff;
--primary-light-text: white;
--primary-dark-text: black;
}

.login-screen {
Expand All @@ -14,7 +16,7 @@
height: var(--sidebar-width);
background-color: var(--primary-dark);
overflow: hidden;
color: white;
color: var(--primary-light-text);
font-size: 30px;
}

Expand Down Expand Up @@ -51,7 +53,7 @@
a {
transform: scale(1.5);
font-size: 1em;
color: white;
color: var(--primary-light-text);
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/assets/styles/students_components.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,15 @@
.deadline-head {
background-color: var(--primary-dark);
border-radius: 0.50rem 0.50rem 0 0;
color: var(--primary-light-text);
font-size: 20px;
}

.deadline-elements {
height: 100%;
overflow-y: auto;
border-radius: 0 0 0.50rem 0.50rem;
color: var(--primary-dark-text);
}

.deadline-card {
Expand Down

0 comments on commit 2d3ecc2

Please sign in to comment.