Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Header = ({ ChangePage, CurrentPage, Resume }) => {
/>
))}
</ul>
<button className="btn btn-primary btn-sm col-1">About Us</button>
<button className="btn btn-sm col-1">About Us</button>
</nav>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/styles/App.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
font-family: "Montserrat", sans-serif;
background-color: #e0e8e5;
background-color: #ECE9E1;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lowercase colour names please. 😊

@import "utils";
@import "header";
@import "main";
Expand Down
11 changes: 10 additions & 1 deletion src/styles/_header.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.navbar {
background-color: #003100;
background-color: #000000;
margin-bottom: 50px;
@include box-shadow(3px, 0.25);
&-brand {
Expand All @@ -13,3 +13,12 @@
outline: none;
}
}

.navbar .btn {
background: #B29155;
color: #000;
font-weight: 500;
}
.navbar .btn:focus {
box-shadow: none;
}
Comment on lines +16 to +24
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we have these converted into SCSS please? 😊