@benev/praxis
Version:
Multiplayer webgame laboratory
29 lines (21 loc) • 307 B
text/typescript
import {css} from "@benev/slate"
export default css`
:host {
display: inline-block;
width: max-content;
height: max-content;
}
svg {
width: 1em;
height: 1em;
}
.spin {
transform-origin: center;
animation: spin .75s infinite linear;
}
@keyframes spin{
100%{
transform:rotate(360deg);
}
}
`