Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
minor changes
  • Loading branch information
PrinceSumberia committed May 12, 2020
commit b3fe152d87c9e058e410382d3beb0b54ff154ef4
10 changes: 6 additions & 4 deletions src/components/CovidApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,12 @@ class CovidApp extends Component {
onClick={this.handleNotification}
/>
) : (
<FontAwesomeIcon
icon={faBell}
onClick={this.handleNotification}
/>
<div className={classes.notificationBell}>
<FontAwesomeIcon
icon={faBell}
onClick={this.handleNotification}
/>
</div>
)}
</div>
<div className={classes.update}>{expanded && displayUpdates}</div>
Expand Down
4 changes: 4 additions & 0 deletions src/styles/CovidAppStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ export default {
color: colors.darkPurple,
position: "relative",
transition: "all .5s ease",
},

notificationBell: {
position: "relative",

"&::before": {
content: '""',
Expand Down