Skip to content

Commit e60378c

Browse files
committed
Fix chrome bug by defining all the borders
1 parent e27af5c commit e60378c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

addon/styles/components/es-note.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,14 @@
3232
.cta:before {
3333
content: "";
3434
position: absolute;
35-
top: 0%;
36-
left: 0%;
35+
top: 0;
36+
left: 0;
3737
width: 0px;
3838
height: 0px;
39-
border-top: 30px solid var(--color-gray-100);
40-
border-right: 30px solid var(--color-yellow);
4139
border-radius: 0 0 var(--radius-lg) 0;
40+
border-width: 16px;
41+
border-color: var(--color-gray-100) var(--color-yellow) var(--color-yellow) var(--color-gray-100);
42+
border-style: solid;
4243
}
4344

4445
@media only percy {

0 commit comments

Comments
 (0)