Skip to content

Commit

Permalink
Restyled headers
Browse files Browse the repository at this point in the history
and added styling for column filters
  • Loading branch information
Freeassassin committed Jan 21, 2024
1 parent abe2b4a commit 0a2f113
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions frontend/src/scssStyles/tableStyle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,28 @@ table {

th,
td {
padding: 1.5vh 0.5vw;
padding: 0.75vh 0.5vw;
background-color: rgba(255, 255, 255, 0.2);
color: var(--black);
}
th {
text-align: center;
}
thead {
background-color: var(--light-grey);
tr {
border-bottom: 1px solid #000000;
}
th {
text-align: center;
border-right: 1px solid #000000;
.header-container {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 10vh;
}
.filter-input {
font-size: large;
width: 100%;
}
}
}
tbody {
Expand Down Expand Up @@ -70,9 +78,3 @@ tbody {
}
}
}

.filter-input {
margin-top: 10px;
font-size: large;
width: 100%;
}

0 comments on commit 0a2f113

Please sign in to comment.