Skip to content

Commit 6c49c18

Browse files
committed
Fix button background
1 parent d066228 commit 6c49c18

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/theme/components/Post.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { Card, CardContainer } from './Card';
2121
import CardFooter from './CardFooter';
2222
import { Fade } from 'react-awesome-reveal';
2323
import { LinkInButton } from './Link';
24+
import colors from '../colors.json';
2425

2526
const cardMinWidth = '350px';
2627

@@ -98,7 +99,11 @@ export const PostContainer = ({
9899
<Card
99100
as={LinkInButton}
100101
href={`/${pageId}`}
101-
style={{ borderWidth: '2px', padding: '8px 70px' }}
102+
style={{
103+
borderWidth: '2px',
104+
padding: '8px 70px',
105+
background: colors.background,
106+
}}
102107
>
103108
More
104109
</Card>

0 commit comments

Comments
 (0)