commit 750c521d149519ad19140b648ea97e2cf9d7effa
parent b0d2d3e84153d39c70d746d6ee3419689a978ee8
Author: Hugo Soucy <hugo@soucy.cc>
Date: Mon, 22 Jun 2020 21:41:11 -0400
Remove the @supports condition
Diffstat:
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/static/src/css/modules/_h-card.scss b/static/src/css/modules/_h-card.scss
@@ -23,10 +23,8 @@ main.h-card {
width: 15rem;
}
- @supports (clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%) and (shape-outside: polygon(50% 0, 100% 50%, 50% 100%, 0 50%))) {
- .u-photo {
- clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
- shape-outside: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
- }
+ .u-photo {
+ clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
+ shape-outside: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
}