Skip to content

Commit

Permalink
remaining CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
hmallen99 committed Aug 5, 2023
1 parent 6327661 commit 3c7bfce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions src/FilterNavigator/FilterNavigator.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
flex-direction: column;
justify-content: flex-start;
align-items: center;
gap: 10px;
gap: 1em;
}

.filter-list-container {
display: flex;
flex-direction: column;
padding: 10px;
padding-bottom: 15px;
min-width: 250px;
padding: 0.5em;
padding-bottom: 0.5em;
min-width: 16em;
border-radius: 12px;
background-color: white;
box-shadow: 1px 4px 6px 0px rgba(0, 0, 0, 0.20000000298023224);
Expand All @@ -23,8 +23,8 @@
.search-cell {
display: flex;
flex-direction: column;
padding: 10px;
min-width: 250px;
padding: 0.5em;
min-width: 16em;
border-radius: 12px;
background-color: white;
box-shadow: 1px 4px 6px 0px rgba(0, 0, 0, 0.20000000298023224);
Expand All @@ -37,7 +37,7 @@
border-radius: 12px;
background-color: white;
box-shadow: 1px 4px 6px 0px rgba(0, 0, 0, 0.20000000298023224);
padding: 5px;
padding: 0.5em;
border-color: rgb(80, 80, 80);
}

Expand All @@ -48,14 +48,14 @@

.filter-list-cell {
width: 90%;
padding-top: 10px;
padding-bottom: 10px;
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 1px solid rgba(111, 111, 111, 1);
font-family: "Roboto", sans-serif;
font-size: 20px;
border-radius: 12px;
padding-left: 10px;
padding-right: 10px;
padding-left: 0.5em;
padding-right: 0.5em;
color: rgba(111, 111, 111, 1);
margin: 0 auto;
}
Expand Down
6 changes: 3 additions & 3 deletions src/Resume/Resume.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.resume-container {
display: flex;
flex-direction: row;
width: calc(100% - 30px);
width: calc(100% - 2em);
height: 100vh;
padding: 10px;
gap: 10px;
padding: 1em;
gap: 1em;
justify-content: center;
overflow-x: hidden;
}
Expand Down

0 comments on commit 3c7bfce

Please sign in to comment.