Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanPan0131 committed Jul 31, 2023
1 parent a18bbd8 commit dbaaeac
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions styles/addCourse.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

--background-color: var(--dark-background-color);
--color: var(--dark-color);
--color-rgb: var(--dark-color-rgb);

--first-color: var(--dark-first-color);
--first-color-rgb: var(--dark-first-color-rgb);
Expand Down
20 changes: 15 additions & 5 deletions styles/course.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
.menu-mobile-btn svg {
width: 30px;
height: 30px;
fill: var(--color);
fill: var(--white);
}

.result {
Expand Down Expand Up @@ -298,10 +298,11 @@
.aside {
position: fixed;
top: 7vh;
left: 7vw;
width: 86vw;
left: 10vw;
width: 80vw;
height: calc(86% - 40px);
display: none;
z-index: 100;
}

.aside.open {
Expand All @@ -318,10 +319,10 @@
transition: all 0.3s;
padding: 20px;
overflow-y: auto;
z-index: 101;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 101;
}

#menu .close {
Expand All @@ -336,10 +337,18 @@
padding: 5px;
}

.year-label {
width: calc(100% - 40px);
}

.year-label:hover {
transform: scale(1);
}

.colleges-list {
width: 100%;
}

.add-btn {
width: calc(100% - 40px);
max-width: 100%;
Expand All @@ -353,8 +362,9 @@
}

.result {
width: 86vw;
width: 80vw;
min-height: calc(100% - 104px - 104px - 40px);
margin: 32px auto;
}

.search-bar {
Expand Down

0 comments on commit dbaaeac

Please sign in to comment.