Skip to content

Commit

Permalink
stylelint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vdepizzol committed Dec 8, 2021
1 parent a278264 commit 7a5d442
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/layout/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,23 +83,23 @@
// responsive region dividers

@mixin Layout-line-divider {
content: "";
display: block;
position: absolute;
background-color: $Layout-divider-color;
left: calc(var(--Layout-outer-spacing-x) * -1);
display: block;
width: calc(100% + (var(--Layout-outer-spacing-x) * 2));
height: 1px;
left: calc(var(--Layout-outer-spacing-x) * -1);
content: '';
background-color: $Layout-divider-color;
}

@mixin Layout-filled-divider {
content: "";
display: block;
position: absolute;
left: calc(var(--Layout-outer-spacing-x) * -1);
bottom: calc(#{$spacer-2} * -1); // -8px
left: calc(var(--Layout-outer-spacing-x) * -1);
display: block;
width: calc(100% + (var(--Layout-outer-spacing-x) * 2));
height: #{$spacer-2}; // 8px
content: '';
background-color: var(--color-canvas-inset);
box-shadow: inset 0 1px $Layout-divider-color, inset 0 -1px $Layout-divider-color;
}
}

0 comments on commit 7a5d442

Please sign in to comment.