From 9a6dbc9fd7550f547452705cdf36fae18ee21d97 Mon Sep 17 00:00:00 2001 From: Manav Bhosale <80413980+MANAVBHOSALE@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:46:59 +0530 Subject: [PATCH] docs: add css change to remove back button when screen size is reduced (#3873) Co-authored-by: Moritz Wiesinger --- docs/assets/stylesheets/home.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/assets/stylesheets/home.css b/docs/assets/stylesheets/home.css index 212d49c7ba..8828a64a8b 100644 --- a/docs/assets/stylesheets/home.css +++ b/docs/assets/stylesheets/home.css @@ -277,3 +277,9 @@ body { flex-direction: row-reverse; } } + +@media only screen and (max-width: 1220px) { + .md-nav--primary .md-nav__title .md-nav__icon { + display: none !important; + } +}