Skip to content

Commit

Permalink
fix footer/grid width (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
aotearoan committed Dec 6, 2020
1 parent d145465 commit 99bae40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aotearoan/neon",
"description": "Neon is a lightweight design library of VueJS components with minimal dependencies. It supports light and dark modes and can be extended to support multiple themes",
"version": "4.0.6",
"version": "4.0.7",
"main": "dist/@aotearoan/neon.umd.js",
"types": "dist/@aotearoan/components.d.ts",
"files": [
Expand Down
6 changes: 3 additions & 3 deletions src/sass/includes/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ $spacing: (
width: calc(#{$n} * var(--vw, 1vw) - #{$offset});
}

@mixin side-nav-offset($offset: 0px) {
@mixin side-nav-offset {
@include responsive(larger-than-tablet) {
margin-left: $neon-side-nav-width + $offset;
@include width(100, $neon-side-nav-width + $offset);
margin-left: $neon-side-nav-width;
width: auto;
}
}

0 comments on commit 99bae40

Please sign in to comment.