You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.replace(/(?:^|\.|(\s|[^a-zA-Z0-9\-\_]))(me|this|self)(?![a-zA-Z])/g,'$1.'+scope)// Can use: me this self
9
-
.replace(/((@keyframes|animation:|animation-name:)[^{};]*)\.me__/g,'$1me__')// Optional. Removes need to escape names using \
9
+
.replace(/((@keyframes|animation:|animation-name:)[^{};]*)\.me__/g,'$1me__')// Optional. Removes need to escape names, ex: "\.me"
10
10
.replace(/(?:@media)\s(xs-|sm-|md-|lg-|xl-|sm|md|lg|xl|xx)/g,// Optional. Responsive design. Mobile First (above breakpoint): 🟢 None sm md lg xl xx 🏁 Desktop First (below breakpoint): 🏁 xs- sm- md- lg- xl- None 🟢 *- matches must be first!
0 commit comments