Skip to content

Commit

Permalink
fix: migration
Browse files Browse the repository at this point in the history
  • Loading branch information
bazuka5801 committed Mar 3, 2025
1 parent 472d311 commit eeea0fe
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/styles/page-constructor.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import 'variables';
@use 'sass:map';
@use 'variables';

.g-root {
.pc-block-base {
Expand All @@ -25,20 +26,20 @@
}

&__wrapper {
@media (min-width: map-get($screenBreakpoints, 'md')) {
@media (min-width: map.get($screenBreakpoints, 'md')) {
padding: 0 24px;
}

.pc-logo__icon {
max-height: 36px;

@media (max-width: map-get($screenBreakpoints, 'md')) {
@media (max-width: map.get($screenBreakpoints, 'md')) {
max-width: 300px;
}
}
}

@media (min-width: map-get($screenBreakpoints, 'md')) {
@media (min-width: map.get($screenBreakpoints, 'md')) {
&__right {
flex: 0 1 auto;

Expand Down Expand Up @@ -72,7 +73,7 @@
padding: 0;
}

@media (max-width: map-get($screenBreakpoints, 'md')) {
@media (max-width: map.get($screenBreakpoints, 'md')) {
padding-right: 20px;
padding-left: 20px;

Expand Down

0 comments on commit eeea0fe

Please sign in to comment.