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 d066228 commit 6c49c18Copy full SHA for 6c49c18
src/theme/components/Post.tsx
@@ -21,6 +21,7 @@ import { Card, CardContainer } from './Card';
21
import CardFooter from './CardFooter';
22
import { Fade } from 'react-awesome-reveal';
23
import { LinkInButton } from './Link';
24
+import colors from '../colors.json';
25
26
const cardMinWidth = '350px';
27
@@ -98,7 +99,11 @@ export const PostContainer = ({
98
99
<Card
100
as={LinkInButton}
101
href={`/${pageId}`}
- style={{ borderWidth: '2px', padding: '8px 70px' }}
102
+ style={{
103
+ borderWidth: '2px',
104
+ padding: '8px 70px',
105
+ background: colors.background,
106
+ }}
107
>
108
More
109
</Card>
0 commit comments