aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/application.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass/application.scss')
-rw-r--r--client/src/sass/application.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss
index bd834db70..e0e8fc828 100644
--- a/client/src/sass/application.scss
+++ b/client/src/sass/application.scss
@@ -1,5 +1,7 @@
1$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; 1$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
2 2
3@use 'sass:math';
4
3@use '_variables' as *; 5@use '_variables' as *;
4@use '_mixins' as *; 6@use '_mixins' as *;
5 7
@@ -353,11 +355,11 @@ ngx-loading-bar {
353 355
354@media screen and (max-width: #{breakpoint(xxl)}) { 356@media screen and (max-width: #{breakpoint(xxl)}) {
355 .main-col { 357 .main-col {
356 --horizontalMarginContent: #{$not-expanded-horizontal-margins / 2}; 358 --horizontalMarginContent: #{math.div($not-expanded-horizontal-margins, 2)};
357 --videosHorizontalMarginContent: 30px; 359 --videosHorizontalMarginContent: 30px;
358 360
359 &.expanded { 361 &.expanded {
360 --horizontalMarginContent: #{$expanded-horizontal-margins / 2}; 362 --horizontalMarginContent: #{math.div($expanded-horizontal-margins, 2)};
361 } 363 }
362 } 364 }
363} 365}
@@ -370,7 +372,7 @@ ngx-loading-bar {
370 /* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */ 372 /* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */
371 .main-col, 373 .main-col,
372 .main-col.expanded { 374 .main-col.expanded {
373 --horizontalMarginContent: #{$expanded-horizontal-margins / 3}; 375 --horizontalMarginContent: #{math.div($expanded-horizontal-margins, 3)};
374 376
375 .sub-menu { 377 .sub-menu {
376 padding: 0 50px; 378 padding: 0 50px;