Skip to content
Snippets Groups Projects
Commit 6ab50155 authored by Arkerthan's avatar Arkerthan
Browse files

use space more efficiently on wide screens

parent 752d011e
No related branches found
No related tags found
1 merge request!6912Custom hotkeys
div.hotkey-settings {
display: grid;
grid-template-columns: max-content max-content max-content max-content;
grid-template-columns: repeat(3, max-content) auto;
}
@media only screen and (min-width: 1600px) {
div.hotkey-settings {
grid-template-columns: repeat(3, max-content) auto repeat(3, max-content) auto;
}
}
div.hotkey-settings div.description {
......@@ -16,6 +22,7 @@ div.hotkey-settings button {
border-width: 2px;
background-color: var(--button-color);
border-color: var(--button-border-color);
width: 70px;
}
div.hotkey-settings button.combination {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment