Skip to content

Commit

Permalink
style: update to use new md breakpoint for mobile header (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
timrbula authored Nov 3, 2022
1 parent 2ae5fc0 commit d39506d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@boomerang-io/carbon-addons-boomerang-react",
"description": "Carbon Addons for Boomerang apps",
"version": "2.1.0",
"version": "2.1.1-beta.0",
"author": {
"name": "Tim Bula",
"email": "timrbula@gmail.com"
Expand Down
6 changes: 3 additions & 3 deletions src/components/Header/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$breakpoints: (
bp--xs--major: 500px,
bp--sm--major: 768px,
bp--md--major: 992px,
bp--md--major: 960px,
bp--lg--major: 1200px,
);

Expand Down Expand Up @@ -141,15 +141,15 @@ $breakpoints: (
.#{$prefix}--bmrg-header-list--mobile-nav {
display: flex;

@include breakpoint('bp--sm--major') {
@include breakpoint('bp--md--major') {
display: none;
}
}

.#{$prefix}--bmrg-header-list--link {
display: none;

@include breakpoint('bp--sm--major') {
@include breakpoint('bp--md--major') {
display: flex;
}
}
Expand Down

0 comments on commit d39506d

Please sign in to comment.