diff --git a/ElectronClient/app/gui/Header.jsx b/ElectronClient/app/gui/Header.jsx index cfcd389d8c..fc6003300c 100644 --- a/ElectronClient/app/gui/Header.jsx +++ b/ElectronClient/app/gui/Header.jsx @@ -137,14 +137,17 @@ class HeaderComponent extends React.Component { opacity: isEnabled ? 1 : 0.4, }); + const title = options.title ? options.title : ''; + return { if (isEnabled) options.onClick() }} > - {icon}{options.title ? options.title : ''} + {icon}{title} } diff --git a/ElectronClient/app/style.css b/ElectronClient/app/style.css index a39a653f97..1b8e82d7a4 100644 --- a/ElectronClient/app/style.css +++ b/ElectronClient/app/style.css @@ -121,4 +121,10 @@ table td, table th { :disabled { opacity: 0.6; +} + +@media screen and (max-width:550px){ + .header .title { + display: none; + } } \ No newline at end of file