Fix some sass migration regressions

This commit is contained in:
2026-01-10 17:14:07 +01:00
parent ac9fcbe0ba
commit 325373b5d7
2 changed files with 4 additions and 3 deletions

View File

@@ -12,12 +12,13 @@
#projects {
.map-container {
width: $panel-width;
max-width: $panel-width;
width: calc(#{$panel-width});
max-width: calc(#{$panel-width});
}
#title {
text-align: center;
width: 100%;
}
&.with-feed, &.with-settings {

View File

@@ -55,7 +55,7 @@ $panel-actual-width: min($panel-width, #{$panel-width-max});
z-index: 1;
user-select: none;
width: #{$panel-width};
max-width: calc(#{panel-width-max});
max-width: calc(#{$panel-width-max});
transition: transform 0.5s;
&.moving {