Commit e9a9ff03 authored by Maximiliano Mendez Villalobos's avatar Maximiliano Mendez Villalobos Committed by Alberto Siles
Browse files

Issue #3295840 by anoopsingh92, MaxMendez: Using / for division outside of...

Issue #3295840 by anoopsingh92, MaxMendez: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0
parent e6af3922
Loading
Loading
Loading
Loading
+2 −2
Changes for scss/components/commerce.scss: 2 added lines, 2 removed lines.
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
  }
  .views-row {
    border-bottom: 1px solid $gray-400;
    margin-top: $spacer / 2;
    margin-top: $spacer * 0.5;
    display: flex;
    .views-field-title {
      width: 320px;
@@ -107,7 +107,7 @@
  }
  .close {
    color: $white;
    padding: $spacer / 4;
    padding: $spacer * 0.25;
  }
  table {
    color: $white;
+2 −2
Changes for scss/components/site-footer.scss: 2 added lines, 2 removed lines.
Original line number Diff line number Diff line
@@ -21,10 +21,10 @@
/* Footer Bottom Styling. */

.site-footer__bottom .block {
    margin: ($spacer / 2) 0;
    margin: ($spacer * 0.5) 0;
}

.site-footer__bottom .content {
    padding: ($spacer / 2) 0;
    padding: ($spacer * 0.5) 0;
    margin-top: 0;
}
 No newline at end of file
+1 −1
Changes for scss/components/tabledrag.scss: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -12,5 +12,5 @@ tr.drag-previous {
}

body div.tabledrag-changed-warning {
    margin-bottom: ($spacer / 2);
    margin-bottom: ($spacer * 0.5);
}
 No newline at end of file