We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 122811e commit b2f4a86Copy full SHA for b2f4a86
1 file changed
src/puter-js/src/ui/components/PuterContextMenu.js
@@ -285,6 +285,14 @@ class PuterContextMenu extends PuterWebComponent {
285
border-radius: 0;
286
}
287
288
+ /* Keyboard shortcuts have no meaning on touch / small-screen
289
+ devices — hide them so labels can use the full width. */
290
+ @media (max-width: 480px), (pointer: coarse) {
291
+ .shortcut {
292
+ display: none;
293
+ }
294
295
+
296
:host(.sheet-mode) .menu-item:hover:not(.disabled):not(.divider) {
297
background-color: rgba(0, 122, 255, 0.1);
298
color: inherit;
0 commit comments