Skip to content

Commit 8600eed

Browse files
committed
Fix Large Icons
1 parent bea2c7b commit 8600eed

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

components/GlobalStyles.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import { createGlobalStyle } from "styled-components";
2-
import tw, { theme, GlobalStyles as BaseStyles } from "twin.macro";
3-
4-
const CustomStyles = createGlobalStyle({
5-
body: {
6-
WebkitTapHighlightColor: theme`colors.purple.500`,
7-
...tw`antialiased`,
8-
},
9-
});
2+
import tw, { GlobalStyles as BaseStyles } from "twin.macro";
103

4+
const CustomStyles = createGlobalStyle`
5+
body {
6+
${tw`antialiased`}
7+
}
8+
.hero-section-content-intro {
9+
width: revert !important;
10+
}
11+
`;
1112
const GlobalStyles = () => (
1213
<>
1314
<BaseStyles />

0 commit comments

Comments
 (0)