Skip to content

Commit

Permalink
Upd: rounded corners for key buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Jun 16, 2024
1 parent 0d75f07 commit c5c52df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/modalAbout.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit c5c52df

Please sign in to comment.