Skip to content

Commit 2bf282a

Browse files
Don't repeat mask images by default (#239)
* Don't repeat mask images by default * Add missing semicolon Co-authored-by: Jonathan Neal <[email protected]> --------- Co-authored-by: Jonathan Neal <[email protected]>
1 parent 61c85b6 commit 2bf282a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

sanitize.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
/**
55
* 1. Add border box sizing in all browsers (opinionated).
66
* 2. Backgrounds do not repeat by default (opinionated).
7+
* 3. Masks do not repeat by default (opinionated).
78
*/
89

910
*,
1011
::before,
1112
::after {
1213
box-sizing: border-box; /* 1 */
1314
background-repeat: no-repeat; /* 2 */
15+
mask-repeat: no-repeat; /* 3 */
1416
}
1517

1618
/**

0 commit comments

Comments
 (0)