Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lschatzkin committed Feb 8, 2018
1 parent ea9d941 commit c1b1d2f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
12 changes: 5 additions & 7 deletions app/assets/stylesheets/components/footers.scss
Expand Up @@ -6,12 +6,10 @@ footer {
padding: 0.5rem 10%;
#footer-menu {
@include menus;
ul li {
a {
font-size: 0.8rem;
font-weight: 500;
line-height: 1rem;
}
ul li a {
font-size: 0.8rem;
font-weight: 500;
line-height: 1rem;
}
}

Expand All @@ -33,7 +31,7 @@ footer {
min-width: 85%;
a {
padding-left: 0;
padding-right:0;
padding-right: 0;
width: 100%;
}
}
Expand Down
20 changes: 10 additions & 10 deletions app/assets/stylesheets/components/layout.scss
@@ -1,14 +1,14 @@
body {
position: relative;
#main-content {
display: inline-block;
font-size: 1rem;
margin: 0 auto 1rem;
padding-bottom: 3rem;
position: relative;
width: 100%;
@include breakpoint(medium){
margin: 1rem auto 3rem
#main-content {
display: inline-block;
font-size: 1rem;
margin: 0 auto 1rem;
padding-bottom: 3rem;
position: relative;
width: 100%;
@include breakpoint(medium) {
margin: 1rem auto 3rem;
}
}
}
}
7 changes: 3 additions & 4 deletions app/assets/stylesheets/components/share_links.scss
Expand Up @@ -69,13 +69,12 @@ $social-link-text-width: 12.5rem;
}

@mixin expanded-share-link($icon-size) {
width: 1.12*$icon-size + $social-link-text-width + $icon-size/5.7;
transition: width 130ms;
i {
position: relative;
z-index: 2;
}
width: 1.12*$icon-size + $social-link-text-width + $icon-size/5.7;
transition: width 130ms;

span {
visibility: visible;
}
Expand Down Expand Up @@ -111,7 +110,7 @@ $social-link-text-width: 12.5rem;
}
}

@include breakpoint(medium){
@include breakpoint(medium) {
@include share-links-container($social-icon-desktop-size);
margin-top: 8rem;
display: block;
Expand Down

0 comments on commit c1b1d2f

Please sign in to comment.