Explorar el Código

#298 prevent q-layout from getting strange outline when focussed

Falko Schindler hace 2 años
padre
commit
8fa450a43c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      nicegui/client.py

+ 1 - 1
nicegui/client.py

@@ -34,7 +34,7 @@ class Client:
         self.environ: Optional[Dict[str, Any]] = None
         self.shared = shared
 
-        with Element('q-layout', _client=self).props('view="HHH LpR FFF"') as self.layout:
+        with Element('q-layout', _client=self).props('view="HHH LpR FFF"').classes('outline-none') as self.layout:
             with Element('q-page-container'):
                 with Element('q-page'):
                     self.content = Element('div').classes('q-pa-md column items-start gap-4')