From c5c52df1d5debdd591313dfc03ccf39ce2270b64 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Sun, 16 Jun 2024 22:34:46 +0200 Subject: [PATCH] Upd: rounded corners for key buttons --- htdocs/js/modalAbout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/js/modalAbout.js b/htdocs/js/modalAbout.js index bcc972a93..18e19b35c 100644 --- a/htdocs/js/modalAbout.js +++ b/htdocs/js/modalAbout.js @@ -33,7 +33,7 @@ function initModalAbout() { if (keymap[key].feature !== undefined) { col.classList.add(keymap[key].feature); } - const k = elCreateText('div', {"class": ["key", "float-start"]}, (keymap[key].key !== undefined ? keymap[key].key : key)); + const k = elCreateText('div', {"class": ["key", "float-start", "rounded-2"]}, (keymap[key].key !== undefined ? keymap[key].key : key)); if (keymap[key].key && keymap[key].key.length > 1) { k.classList.add('mi', 'mi-sm'); }