@benev/nubs
Version:
user-input system for web games
26 lines (20 loc) • 309 B
text/typescript
import {css} from "@chasemoskal/magical"
export const styles = css`
:host {
display: block;
width: 24em;
height: 12em;
border: 1px solid;
touch-action: none;
}
[part="area"] {
position: relative;
width: 100%;
height: 100%;
}
[part="graphic"] {
position: absolute;
width: 8em;
height: 8em;
}
`