Commit ece442be authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3317526: Fix Dart-SASS Deprecation nesting with @include...

Issue #3317526: Fix Dart-SASS Deprecation nesting with @include margin(-($spacer)) which bring visual issues for unordered navigation list in sidebar or action tasks
parent 9cf29454
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@charset "UTF-8";
:root {
@charset "UTF-8"; :root {
  --blue: #007bff;
  --breakpoint-lg: 992px;
  --breakpoint-md: 768px;
+1 −1
Original line number Diff line number Diff line
@@ -25,5 +25,5 @@
  background: none;
}
.sidebar nav ul.nav {
  margin: 0 -1rem;
  margin: -1rem;
}
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@
    "browser-sync": "~2",
    "chalk": "^4.1.0",
    "chokidar": "^3.3.1",
    "chromedriver": "^98.0.1",
    "chromedriver": "^107",
    "cross-env": "^7.0.2",
    "del": "~3",
    "dotenv-safe": "^8.2.0",
+1 −1
Original line number Diff line number Diff line
@@ -34,6 +34,6 @@
    border-bottom: $border-width solid $border-color;
  }
  nav ul.nav {
    @include margin(0 (-($spacer)));
    @include margin(-($spacer));
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -25,5 +25,5 @@
  background: none;
}
.sidebar nav ul.nav {
  margin: 0 -1rem;
  margin: -1rem;
}
Loading