Skip to content

Commit

Permalink
fix: primevue sidebar media query refactor (#110)
Browse files Browse the repository at this point in the history
refactor media query
  • Loading branch information
J0taFerreira authored Oct 10, 2023
1 parent 57533b2 commit 63ef8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style-sheets/primevue-components-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -878,14 +878,14 @@ label {
map.get(lightTheme.$light-theme, 'layer-selected-01');
}

@media (min-device-width: 768px) {
@media (min-width: 768px) {
.#{variables.$primevue-prefix}-sidebar-left
.#{variables.$primevue-prefix}-sidebar {
width: 33.3% !important;
}
}

@media (min-device-width: 1024px) {
@media (min-width: 1024px) {
.#{variables.$primevue-prefix}-sidebar-mask,
.#{variables.$primevue-prefix}-sidebar-left
.#{variables.$primevue-prefix}-sidebar {
Expand Down

0 comments on commit 63ef8bc

Please sign in to comment.