Hi!
If you use the CSS property -webkit-box-orient, it is removed in the build. It worked well in v1.0.x
The build should have this property.
.three_lines {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
Which @ionic/app-scripts version are you using?
v1.1.4
The same issue was rejected in ionic repository: https://github.com/driftyco/ionic/issues/10723
Thank you very much!
Yes? i'm not work to scss
.pod_c {
white-space: pre-line;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
vertical-align: middle;
font-size: 0.7em;
}
Same here. And can't find another solution to have same behaviour other than wrapping text previously to be shown what i am not confortable with
another duplicate https://github.com/driftyco/ionic-app-scripts/issues/869
+1 one for this - it simply removes "-webkit-box-orient: vertical;" from css
thansk )))
close team please
Nice workaround @aspidvip ! Thanks!
@vhinic thanks for u ,solve my problem 馃憤 馃檹
Most helpful comment
I was able to properly fix this by specifying my own _.scss.config.js_:
And pointing to it in _package.json_:
See this and this for more details