Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

[Ready Release] Bug Bash Round 3 #215

Merged
merged 19 commits into from
Dec 7, 2021
Merged
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 config/dev.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
module.exports = {
};
};
2 changes: 1 addition & 1 deletion src/components/Banner/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Banner = () => {
"Welcome to our BETA work listings site - Tell us what you think!";

return (
<div styleName="banner">
<div styleName="banner" className="banner">
<p styleName="header">
{header}

Expand Down
3 changes: 2 additions & 1 deletion src/components/Banner/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
flex-direction: row;
align-items: center;
@include roboto-bold;
height: 50px;
line-height: 25px;
min-height: 50px;
font-size: 20px;
text-transform: uppercase;
}
Expand Down
10 changes: 10 additions & 0 deletions src/components/Menu/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ $menu-padding-y: 20px;
.menu-item-main.expanded > .link + ul,
.menu-item-secondary.expanded > .link + ul {
display: block;
cursor: default;
}

.menu-item-secondary.active.collapsed {
Expand All @@ -85,6 +86,15 @@ $menu-padding-y: 20px;

.sub-menu {
padding-left: 24px + 16px;

.menu-item {
cursor: default;
.link {
cursor: pointer;
display: inline-block;
}
}

}

.sub-submenu {
Expand Down