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

Commit b318327

Browse files
[Ready Release] Bug Bash Round 3 (#215)
1 parent b024278 commit b318327

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Diff for: config/dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
module.exports = {
2-
};
2+
};

Diff for: src/components/Banner/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Banner = () => {
99
"Welcome to our BETA work listings site - Tell us what you think!";
1010

1111
return (
12-
<div styleName="banner">
12+
<div styleName="banner" className="banner">
1313
<p styleName="header">
1414
{header}
1515

Diff for: src/components/Banner/styles.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
flex-direction: row;
2121
align-items: center;
2222
@include roboto-bold;
23-
height: 50px;
23+
line-height: 25px;
24+
min-height: 50px;
2425
font-size: 20px;
2526
text-transform: uppercase;
2627
}

Diff for: src/components/Menu/styles.scss

+10
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ $menu-padding-y: 20px;
7777
.menu-item-main.expanded > .link + ul,
7878
.menu-item-secondary.expanded > .link + ul {
7979
display: block;
80+
cursor: default;
8081
}
8182

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

8687
.sub-menu {
8788
padding-left: 24px + 16px;
89+
90+
.menu-item {
91+
cursor: default;
92+
.link {
93+
cursor: pointer;
94+
display: inline-block;
95+
}
96+
}
97+
8898
}
8999

90100
.sub-submenu {

0 commit comments

Comments
 (0)