diff --git a/public/css/built.css b/public/css/built.css index d4b3a8204e6b..4a7c3612187f 100644 --- a/public/css/built.css +++ b/public/css/built.css @@ -2910,8 +2910,24 @@ box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2); .large-dialog { width: 960px; } - .hide-desktop - { + .hide-desktop { + display: none; + } +} + +/* Style to fix navigation by show icon instead of name */ +@media only screen and (min-width : 1200px) { + .nav-account-icon { + display: none; + } +} +@media only screen and (max-width : 992px) { + .nav-account-icon { + display: none; + } +} +@media only screen and (max-width : 1200px) and (min-width: 992px) { + .nav-account-name { display: none; } } diff --git a/public/css/style.css b/public/css/style.css index e469e9418d83..97f2bbf79edf 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -783,8 +783,24 @@ box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2); .large-dialog { width: 960px; } - .hide-desktop - { + .hide-desktop { + display: none; + } +} + +/* Style to fix navigation by show icon instead of name */ +@media only screen and (min-width : 1200px) { + .nav-account-icon { + display: none; + } +} +@media only screen and (max-width : 992px) { + .nav-account-icon { + display: none; + } +} +@media only screen and (max-width : 1200px) and (min-width: 992px) { + .nav-account-name { display: none; } } diff --git a/resources/views/header.blade.php b/resources/views/header.blade.php index 4a795e0e8a1a..46bebbd68732 100644 --- a/resources/views/header.blade.php +++ b/resources/views/header.blade.php @@ -427,14 +427,16 @@