We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce1917 commit 78b1aaeCopy full SHA for 78b1aae
src/components/QuickStartFilter.js
@@ -109,8 +109,8 @@ export default function QuickstartFilter({defaultLanguage = null}) {
109
// ----- Styles -----
110
const headingStyle = {
111
textAlign: "left",
112
- marginLeft: "1rem",
113
- fontSize: "1.4rem",
+ marginLeft: typeof window !== "undefined" && window.innerWidth < 480 ? "0.75rem" : "1rem",
+ fontSize: typeof window !== "undefined" && window.innerWidth < 480 ? "1.2rem" : "1.4rem",
114
fontWeight: "600",
115
color: isDark ? "#fff" : "#222",
116
};
0 commit comments