Skip to content
This repository was archived by the owner on Dec 12, 2021. It is now read-only.
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"main": "webpack.config.js",
"scripts": {
"hot": "webpack-dev-server --inline --hot --history-api-fallback --open",
"buildWatch": "webpack --mode production --watch",
"build": "webpack --mode production",
"start": "node index.js",
"start:docker": "webpack-dev-server --host 0.0.0.0 --inline --hot --history-api-fallback --open",
Expand Down
11 changes: 6 additions & 5 deletions src/components/common/header/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ header {

.btn-container {
display: none;

/* large devices -- desktops screen sizes 992px and above */
@media only screen and (min-width: 992px) {
display: inline;
Expand All @@ -165,11 +164,13 @@ header {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

&:hover {
transform: scale(.98)
transform: scale(0.98);
background-color: #fff;
border: 1px $header-btn-color;
color: $header-btn-color;
cursor: pointer;
}
}


}
}


Expand Down