Просмотр исходного кода

add parentheses when include mixin

Yuki Takei 1 год назад
Родитель
Сommit
56b60f2e0c

+ 1 - 1
apps/app/src/components/Common/PageViewLayout.module.scss

@@ -15,7 +15,7 @@ $page-view-layout-margin-top: 32px;
 // fluid layout
 // fluid layout
 .fluid-layout :global {
 .fluid-layout :global {
   .grw-container-convertible {
   .grw-container-convertible {
-    @include mixins.fluid-layout;
+    @include mixins.fluid-layout();
   }
   }
 }
 }
 
 

+ 1 - 1
apps/app/src/components/Navbar/GrowiNavbarBottom.module.scss

@@ -5,7 +5,7 @@
   // apply transition
   // apply transition
   transition-property: bottom;
   transition-property: bottom;
 
 
-  @include mixins.apply-navigation-transition;
+  @include mixins.apply-navigation-transition();
 
 
   .navbar {
   .navbar {
     height: var.$grw-navbar-bottom-height;
     height: var.$grw-navbar-bottom-height;

+ 1 - 1
apps/app/src/components/PageEditor/Preview.module.scss

@@ -13,7 +13,7 @@
   &:global {
   &:global {
     &.fluid-layout {
     &.fluid-layout {
       .wiki {
       .wiki {
-        @include mixins.fluid-layout;
+        @include mixins.fluid-layout();
       }
       }
     }
     }
   }
   }

+ 1 - 1
apps/app/src/components/SearchPage/SearchResultContent.module.scss

@@ -6,6 +6,6 @@
 
 
 .fluid-layout :global {
 .fluid-layout :global {
   .grw-container-convertible {
   .grw-container-convertible {
-    @include mixins.fluid-layout;
+    @include mixins.fluid-layout();
   }
   }
 }
 }

+ 1 - 1
apps/app/src/components/Sidebar/Sidebar.module.scss

@@ -60,7 +60,7 @@
       // apply transition
       // apply transition
       transition-property: transform;
       transition-property: transform;
 
 
-      @include mixins.apply-navigation-transition;
+      @include mixins.apply-navigation-transition();
 
 
       &:not(.open) {
       &:not(.open) {
         transform: translateX(-100%);
         transform: translateX(-100%);