Skip to content

Commit

Permalink
fix: appbar width breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantanrk committed Jan 25, 2022
1 parent cf3d2d9 commit 6e7e7ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/app-bar/src/AppBar.svelte
Expand Up @@ -183,6 +183,7 @@

<style lang="scss" global>
$sm: 576px;
$md: 768px;
$height: 55px;
.resp-app-bar {
Expand Down Expand Up @@ -239,7 +240,7 @@
display: flex;
justify-content: space-between;
@media (min-width: $sm) {
@media (min-width: $md) {
width: 80%;
}
}
Expand Down

0 comments on commit 6e7e7ef

Please sign in to comment.