We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85e1dee commit 6c463acCopy full SHA for 6c463ac
src/experimental/containers/Footer/Footer.components.tsx
@@ -113,17 +113,18 @@ export const Copyright = styled(FooterContainer)`
113
}
114
`;
115
116
+const ComicSansText = styled.span`
117
+ cursor: pointer;
118
+`;
119
+const ComicSansCSS = createGlobalStyle`
120
+ html * {
121
+ font-family: "Comic Sans MS" !important;
122
+ }
123
124
+
125
export const ComicSans: React.FC<ComicSansProps> = ({ children }) => {
126
const [showComicSans, setShowComicSans] = useState(false);
127
const switchComicSans = () => setShowComicSans(!showComicSans);
- const ComicSansText = styled.span`
- cursor: pointer;
- `;
- const ComicSansCSS = createGlobalStyle`
- html * {
- font-family: "Comic Sans MS" !important;
- }
128
129
return (
130
<>
0 commit comments