Skip to content

Commit

Permalink
switch button color and bg for clearer on small screens and more cons…
Browse files Browse the repository at this point in the history
…istency
  • Loading branch information
bbland1 committed Oct 16, 2024
1 parent 84b4401 commit 9cafd27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions src/components/NavBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
}

.navbar button {
background-color: $secondary-blue;
color: $primary-beige;
background-color: $primary-beige;
color: $secondary-blue;
font-weight: bold;
border: none;

&:hover {
background-color: $primary-beige;
color: $secondary-blue;
background-color: $secondary-blue;
color: $primary-beige;
}

@media (min-width: 431px) {
Expand All @@ -53,8 +53,4 @@
padding: 0.5rem;
width: 11rem;
}

@media (max-width: 430px) {
background-color: $primary-beige;
}
}
2 changes: 1 addition & 1 deletion src/views/unauthenticated/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export function About() {
target="_blank"
>
The Collab Lab
</a>
</a>{" "}
for the opportunity!
</p>
</Card.Body>
Expand Down

0 comments on commit 9cafd27

Please sign in to comment.