styles: Replace more deprecated mixins

* .transform-origin
* .list-style-image

Change-Id: I1dee510097c179d23c5cc2192c70ca006869f5d0
This commit is contained in:
Ed Sanders 2022-05-16 23:25:44 +01:00
parent 7eb818543e
commit 4a8eba29df
2 changed files with 2 additions and 2 deletions

View File

@ -67,6 +67,6 @@
outline: 0;
cursor: default;
pointer-events: none;
.transform-origin( 50% 50% );
transform-origin: 50% 50%;
}
}

View File

@ -19,7 +19,7 @@ body {
ul {
// `list-style-image` sits on `ul` as it inherits and we don't need to worry about `ol`.
// No need for PNG fallback. Fallback is browser default (a smaller, also black, circle).
.list-style-image( 'images/bullet-icon.svg' );
list-style-image: 'images/bullet-icon.svg';
}
pre,