Skip to content
Snippets Groups Projects
Unverified Commit 6a6efba2 authored by Patrick Marsceill's avatar Patrick Marsceill
Browse files

fix linting / rules

parent d554236b
No related branches found
No related tags found
No related merge requests found
{
"ignoreFiles" : [
"assets/css/just-the-docs.scss"
],
"extends": [
"stylelint-config-primer"
]
......
......@@ -12,9 +12,9 @@
margin-right: $sp-1;
margin-left: $sp-1;
color: $white;
text-transform: uppercase;
vertical-align: middle;
background-color: $blue-100;
text-transform: uppercase;
@include fs-2;
}
......
......@@ -115,6 +115,7 @@
}
}
// stylelint-disable selector-no-type
body {
position: relative;
padding-bottom: $sp-10;
......@@ -124,6 +125,7 @@ body {
padding-bottom: 0;
}
}
// stylelint-enable selector-no-type
.site-footer {
position: absolute;
......
......@@ -11,9 +11,9 @@
position: absolute;
top: 0;
right: 0;
z-index: 101;
height: 60px;
padding-top: $sp-4;
z-index: 101;
box-shadow: inset 0 -1px 0 $border-color;
}
}
......@@ -89,7 +89,6 @@
}
}
.navigation-list-toggle {
position: absolute;
right: $sp-4;
......
......@@ -15,20 +15,22 @@
@media (min-width: rem($value)) {
@content;
}
} @else {
}
@else {
@warn "No value could be retrieved from `#{$media-query}`. "
+ "Please make sure it is defined in `$media-queries` map.";
+ "Please make sure it is defined in `$media-queries` map.";
}
}
// Responsive container
@mixin container {
padding-left: $gutter-spacing-sm;
padding-right: $gutter-spacing-sm;
padding-left: $gutter-spacing-sm;
@include mq(md) {
padding-left: $gutter-spacing;
padding-right: $gutter-spacing;
padding-left: $gutter-spacing;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment