Files
pixel.horse/src/ts/components/tools/shared/tools-xy/tools-xy.pug
T
2019-08-28 21:15:02 -07:00

10 lines
443 B
Plaintext

.tools-xy.btn-group
button.btn.btn-xs.btn-default((click)="changeY(y - 1)")
fa-icon([icon]="upIcon" [fixedWidth]="true")
button.btn.btn-xs.btn-default((click)="changeX(x - 1)")
fa-icon([icon]="leftIcon" [fixedWidth]="true")
button.btn.btn-xs.btn-default((click)="changeX(x + 1)")
fa-icon([icon]="rightIcon" [fixedWidth]="true")
button.btn.btn-xs.btn-default((click)="changeY(y + 1)")
fa-icon([icon]="downIcon" [fixedWidth]="true")