From 890b50cd633f78aad6bacadb1b4cc19ff1ce4404 Mon Sep 17 00:00:00 2001 From: Denys Sedchenko Date: Wed, 17 Jul 2024 10:14:53 -0400 Subject: [PATCH] feat: always show terminal copy button (#381) --- .../components/features/inspector/Console/Console.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/web/src/components/features/inspector/Console/Console.css b/web/src/components/features/inspector/Console/Console.css index 3c17b8a8..3aa753cc 100644 --- a/web/src/components/features/inspector/Console/Console.css +++ b/web/src/components/features/inspector/Console/Console.css @@ -30,7 +30,7 @@ Copy button for touch devices */ .app-Console__copy { position: absolute; - display: none; + display: block; z-index: 999; top: 0; right: var(--terminal-padding-x); @@ -39,10 +39,3 @@ Copy button for touch devices .app-Console__copy[hidden] { display: none; } - -/* Enable copy button only on touch devices */ -@media (hover: none) { - .app-Console__copy { - display: block; - } -}