Compare commits

...

1 Commits

Author SHA1 Message Date
dwelle
94005b790a fix: icons not rotated properly in old safari 2024-05-15 10:20:04 +02:00

View File

@ -698,14 +698,18 @@ export const BringForwardIcon = createIcon(arrownNarrowUpJSX, tablerIconProps);
export const SendBackwardIcon = createIcon(arrownNarrowUpJSX, {
...tablerIconProps,
transform: "rotate(180)",
style: {
transform: "rotate(180deg)",
},
});
export const BringToFrontIcon = createIcon(arrowBarToTopJSX, tablerIconProps);
export const SendToBackIcon = createIcon(arrowBarToTopJSX, {
...tablerIconProps,
transform: "rotate(180)",
style: {
transform: "rotate(180deg)",
},
});
//