Skip to content

Commit

Permalink
fixed media quary not including 768px
Browse files Browse the repository at this point in the history
  • Loading branch information
J0taFerreira committed Oct 20, 2023
1 parent 6fced8d commit 54e4fac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions style-sheets/primevue-components-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,7 @@ label {
margin: 0.5rem 0 0;
padding: 0;
border-radius: 0;
display: none;
}

.#{variables.$primevue-prefix}-breadcrumb
Expand Down Expand Up @@ -1017,9 +1018,9 @@ li.#{variables.$primevue-prefix}-menuitem-separator svg {
display: none;
}

@media (max-width: 768px) {
@media (min-width: 768px) {
.#{variables.$primevue-prefix}-breadcrumb {
display: none;
display: block;
}
}

Expand Down

0 comments on commit 54e4fac

Please sign in to comment.