@benev/praxis
Version:
Multiplayer webgame laboratory
27 lines (22 loc) • 347 B
JavaScript
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);
}
}
`;
//# sourceMappingURL=style.css.js.map