Compare commits
No commits in common. "6a89cc4aebbd0063baf0700687c85cff213f9ede" and "910d2df7b53ec9fd8ffdee2a68138a9091b62a9b" have entirely different histories.
6a89cc4aeb
...
910d2df7b5
|
@ -48,7 +48,6 @@
|
|||
}
|
||||
}
|
||||
function handleWheel(event: WheelEvent) {
|
||||
if (!file) return
|
||||
if (event.deltaX < 0) {
|
||||
secondaryColorIndex = (secondaryColorIndex - 1 + file.canvas.palette.length) % file.canvas.palette.length
|
||||
} else if (event.deltaX > 0) {
|
||||
|
@ -150,6 +149,7 @@
|
|||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
.entry.hide {
|
||||
display: none;
|
||||
|
|
Loading…
Reference in New Issue