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 72470f0 commit cb54a46Copy full SHA for cb54a46
src/components/Nav/index.tsx
@@ -10,6 +10,7 @@ import {
10
HStack,
11
Icon,
12
MenuButton,
13
+ Text,
14
useDisclosure,
15
useEventListener,
16
} from "@chakra-ui/react"
@@ -169,7 +170,10 @@ const Nav: FC<IProps> = ({ path }) => {
169
170
verticalAlign="middle"
171
me={2}
172
/>
- {t("common:languages")} {locale!.toUpperCase()}
173
+ <Text hideBelow="lg" as="span">
174
+ {t("common:languages")}
175
+ </Text>
176
+ {locale!.toUpperCase()}
177
</MenuButton>
178
</LanguagePicker>
179
</HStack>
0 commit comments