Skip to content

Commit

Permalink
style(echint): ignore **/snapshots/** folder and fix errors on Video …
Browse files Browse the repository at this point in the history
…and TitledText

because they were previously ignored
  • Loading branch information
lzcabrera committed Aug 16, 2017
1 parent e0f7557 commit a3abdef
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,7 @@
"**/dist/**",
"docs/components/Logo.svg",
"**.log",

"src/components/Video/**",
"src/components/TitledText/**",
"**/__snapshots__/**",

"docs/elements/**",
"icons/scripts/icons.js"
Expand Down
4 changes: 2 additions & 2 deletions src/components/TitledText/TitledText.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
}

.title-text-block__content {
margin: 32px 0;
}
margin: 32px 0;
}
24 changes: 12 additions & 12 deletions src/components/Video/Video.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.video-container-block {
position: relative;
padding-bottom: 53.10%;
padding-top: 25px;
height: 0;
margin-bottom: 33px;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
position: relative;
padding-bottom: 53.10%;
padding-top: 25px;
height: 0;
margin-bottom: 33px;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}

0 comments on commit a3abdef

Please sign in to comment.