diff --git a/sanitize.css b/sanitize.css index 53de7e9..d7d1fb9 100644 --- a/sanitize.css +++ b/sanitize.css @@ -4,6 +4,7 @@ /** * 1. Add border box sizing in all browsers (opinionated). * 2. Backgrounds do not repeat by default (opinionated). + * 3. Masks do not repeat by default (opinionated). */ *, @@ -11,6 +12,7 @@ ::after { box-sizing: border-box; /* 1 */ background-repeat: no-repeat; /* 2 */ + mask-repeat: no-repeat; /* 3 */ } /**