Skip to content

Commit

Permalink
Make background-image: none more specific (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
janette authored Apr 10, 2023
1 parent 269e171 commit 062edd3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/theme/styles/general.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
html {
/*Convert font size to base 10 for easier calculations (1rem = 10px)*/
font-size: 62.5%;
body {
background-image: none;
}
}

body {
Expand Down
3 changes: 2 additions & 1 deletion src/theme/styles/hero.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@
flex-wrap: nowrap;
input {
margin-right: 1em;
width: 80%;
}
button {
border: none;
background-color: $secondary;
color: $primaryDark;
height: 34px;
height: 3.2rem;
padding: 0 30px;
font-weight: bold;
font-size: 1.6rem;
Expand Down
4 changes: 4 additions & 0 deletions src/theme/styles/navbar.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
@import "../variables";

ul.mr-auto.nav {
margin-top: 0;
}

.dc-main-navigation {
background-color: $navBarBackgroundColor;
position: relative;
Expand Down

0 comments on commit 062edd3

Please sign in to comment.