File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ const PageHero: React.FC<IProps> = ({
95
95
{ subtitle }
96
96
</ Text >
97
97
{ buttons && (
98
+ // FIXME: remove the `ul` override once removed the corresponding
99
+ // global styles in `src/@chakra-ui/gatsby-plugin/styles.ts`
98
100
< Wrap spacing = { 2 } overflow = "visible" sx = { { ul : { m : 0 } } } >
99
101
{ buttons . map ( ( button , idx ) => {
100
102
if ( isButtonLink ( button ) ) {
Original file line number Diff line number Diff line change @@ -227,7 +227,9 @@ const RoadmapPage = ({
227
227
< Title > { mdx . frontmatter . title } </ Title >
228
228
< Text > { mdx . frontmatter . description } </ Text >
229
229
{ mdx ?. frontmatter ?. buttons && (
230
- < Wrap spacing = { 2 } marginBottom = { 4 } >
230
+ // FIXME: remove the `ul` override once removed the corresponding
231
+ // global styles in `src/@chakra-ui/gatsby-plugin/styles.ts`
232
+ < Wrap spacing = { 2 } marginBottom = { 4 } sx = { { ul : { m : 0 } } } >
231
233
{ mdx . frontmatter . buttons . map ( ( button , idx ) => {
232
234
if ( button ?. to ) {
233
235
return (
You can’t perform that action at this time.
0 commit comments