added some sorting options to the filters menu, as well as an exit button for the menu. Still not really functional lol

This commit is contained in:
2023-03-29 09:44:08 -04:00
parent 7f4b0bb78f
commit 83fd1d74ce
2 changed files with 46 additions and 14 deletions

View File

@@ -116,12 +116,20 @@ th {
.subnav {
background-color: transparent;
height: 40px;
height: fit-content;
display: flex;
justify-content: center;
align-items: center;
}
.subnav-Header {
color: #333333;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
}
.subnav-links {
display: flex;
flex-direction: column;
@@ -170,8 +178,10 @@ th {
#filter-box {
display: flex;
flex-direction: row;
position: absolute;
top: 185px;
height: auto;
left: auto;
right: 0;
padding: 10px;
@@ -179,4 +189,8 @@ th {
border: 1px solid #ccc;
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
z-index: 1;
}
#filterButton {
margin-right: 25px;
}