diff --git a/docs/.vitepress/theme/overrides.css b/docs/.vitepress/theme/overrides.css index 1dbe39b23d3b1..bea741e44a2fa 100644 --- a/docs/.vitepress/theme/overrides.css +++ b/docs/.vitepress/theme/overrides.css @@ -1,8 +1,10 @@ /** * Make logo size of the sidebar * -------------------------------------------------------------------------- */ -.VPNav .VPNavBar .VPNavBarTitle .logo { - height: unset; +@media only screen and (min-width: 370px) { + .VPNav .VPNavBar .VPNavBarTitle .logo { + height: unset; + } } /** diff --git a/docs/home.css b/docs/home.css index c66cd25378943..93c16b6d7c193 100644 --- a/docs/home.css +++ b/docs/home.css @@ -199,3 +199,9 @@ padding-block: 32px; } } + +@media only screen and (max-width: 380px) { + .heroContent h1 { + font-size: 36px; + } +}