Skip to content

Commit a76d810

Browse files
author
RafiBomb
committed
removes important for images on small
1 parent cfe1cee commit a76d810

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ supercollider
2323
pageRoot: 'docs/pages',
2424
data: {
2525
repoName: 'foundation-emails',
26-
editBranch: 'v2.0'
26+
editBranch: 'develop'
2727
}
2828
})
2929
.searchConfig({

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"gulp-sourcemaps": "^1.6.0",
4444
"gulp-wrap": "^0.11.0",
4545
"gulp-zip": "^3.2.0",
46-
"inky": "zurb/inky#fix-character-escaping",
46+
"inky": "zurb/inky",
4747
"lazypipe": "^1.0.1",
4848
"motion-ui": "^1.1.1",
4949
"multiline": "^1.0.2",
@@ -63,3 +63,5 @@
6363
"needs": "^0.8.0"
6464
}
6565
}
66+
67+

scss/components/_media-query.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
@media only screen and (max-width: #{$global-breakpoint}) {
1010
table.body img {
11-
width: auto !important;
12-
height: auto !important;
11+
width: auto;
12+
height: auto;
1313
}
1414

1515
table.body center {

test/visual/pages/images.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<container>
2+
<row>
3+
<columns small="12" large="12">
4+
<img style="width: 14px;" src="http://placehold.it/600" alt="">
5+
</columns>
6+
</row>
7+
8+
<row>
9+
<columns small="12" large="12">
10+
<img style="width: 480px;" src="http://placehold.it/600" alt="">
11+
</columns>
12+
</row>
13+
14+
<row>
15+
<columns small="12" large="12">
16+
<img src="http://placehold.it/600" alt="">
17+
</columns>
18+
</row>
19+
</container>

0 commit comments

Comments
 (0)