Skip to content

Commit

Permalink
💚 Fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
lgraziani2712 committed Sep 2, 2017
1 parent 76bf8a8 commit 9491118
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/components/__snapshots__/Snapshot.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ exports[`Components snapshots renders the FrontPage correctly 1`] = `
}
.c2 > img {
-webkit-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}
Expand All @@ -101,6 +102,7 @@ exports[`Components snapshots renders the FrontPage correctly 1`] = `
}
.c6 > img {
-webkit-filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.5));
filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.5));
}
Expand Down
6 changes: 6 additions & 0 deletions client/components/pages/__snapshots__/Snapshot.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ exports[`Components snapshots renders the MenuBar correctly 1`] = `
}
.c4 {
-webkit-filter: drop-shadow(0 1px 2px rgba(85,95,110,0.4));
filter: drop-shadow(0 1px 2px rgba(85,95,110,0.4));
}
Expand All @@ -37,10 +38,12 @@ exports[`Components snapshots renders the MenuBar correctly 1`] = `
}
.c9 path {
-webkit-fill: rgba(0,0,0,0.6);
fill: rgba(0,0,0,0.6);
}
a:hover > .c9 path {
-webkit-fill: rgba(0,0,0,0.7);
fill: rgba(0,0,0,0.7);
}
Expand Down Expand Up @@ -312,6 +315,7 @@ exports[`Components snapshots renders the links correctly 2`] = `
}
.c1 {
-webkit-filter: drop-shadow(0 1px 2px rgba(85,95,110,0.4));
filter: drop-shadow(0 1px 2px rgba(85,95,110,0.4));
}
Expand Down Expand Up @@ -340,10 +344,12 @@ exports[`Components snapshots renders the links correctly 3`] = `
}
.c0 path {
-webkit-fill: rgba(0,0,0,0.6);
fill: rgba(0,0,0,0.6);
}
a:hover > .c0 path {
-webkit-fill: rgba(0,0,0,0.7);
fill: rgba(0,0,0,0.7);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ exports[`ui/Activity/components renders <BackgroundImage /> correctly 1`] = `
.c0::before {
background: url(/test.png) repeat;
content: '';
-webkit-filter: contrast(65%) brightness(110%) saturate(75%) sepia(22%) grayscale(20%);
filter: contrast(65%) brightness(110%) saturate(75%) sepia(22%) grayscale(20%);
height: 100%;
position: absolute;
Expand Down Expand Up @@ -60,6 +61,7 @@ exports[`ui/Activity/components renders <TwoColumns /> correctly 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.8));
filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.8));
}
Expand Down

0 comments on commit 9491118

Please sign in to comment.