{
diff --git a/src/html/component/undo-redo/undo-redo.less b/src/html/component/undo-redo/undo-redo.less
index 024302d..d34232c 100644
--- a/src/html/component/undo-redo/undo-redo.less
+++ b/src/html/component/undo-redo/undo-redo.less
@@ -18,12 +18,19 @@
.uk-button {
background: rgb(34, 34, 34);
}
-
-
}
@media (prefers-color-scheme: light) {
.uk-button {
background: rgb(222, 222, 222);
}
+
+ .uk-button:hover {
+ background: rgb(200, 200, 200);
+ }
+
+
+ .fa-arrow-left, .fa-arrow-right {
+ color: black;
+ }
}
diff --git a/src/html/component/undo-redo/undo-redo.ts b/src/html/component/undo-redo/undo-redo.ts
index 9ba68ca..3754d46 100644
--- a/src/html/component/undo-redo/undo-redo.ts
+++ b/src/html/component/undo-redo/undo-redo.ts
@@ -29,9 +29,9 @@ export default class UndoRedo extends LitElement {
render (): TemplateResult {
return html`
-
-
`
diff --git a/src/html/util/config.ts b/src/html/util/config.ts
index 583102e..4e9b5ed 100644
--- a/src/html/util/config.ts
+++ b/src/html/util/config.ts
@@ -36,3 +36,5 @@ export const tabList: TabData[] = [
icon: 'a'
})
]
+
+export const functionDebounceTimer = 1000