|
@@ -238,7 +238,7 @@ export default class GuideAnchorWrapper extends React.Component<WrapperProps> {
|
|
const GuideContainer = styled('div')`
|
|
const GuideContainer = styled('div')`
|
|
display: grid;
|
|
display: grid;
|
|
grid-template-rows: repeat(2, auto);
|
|
grid-template-rows: repeat(2, auto);
|
|
- grid-gap: ${space(2)};
|
|
|
|
|
|
+ gap: ${space(2)};
|
|
text-align: center;
|
|
text-align: center;
|
|
line-height: 1.5;
|
|
line-height: 1.5;
|
|
background-color: ${p => p.theme.purple300};
|
|
background-color: ${p => p.theme.purple300};
|
|
@@ -249,7 +249,7 @@ const GuideContainer = styled('div')`
|
|
const GuideContent = styled('div')`
|
|
const GuideContent = styled('div')`
|
|
display: grid;
|
|
display: grid;
|
|
grid-template-rows: repeat(2, auto);
|
|
grid-template-rows: repeat(2, auto);
|
|
- grid-gap: ${space(1)};
|
|
|
|
|
|
+ gap: ${space(1)};
|
|
|
|
|
|
a {
|
|
a {
|
|
color: ${p => p.theme.white};
|
|
color: ${p => p.theme.white};
|
|
@@ -269,7 +269,7 @@ const GuideDescription = styled('div')`
|
|
const GuideAction = styled('div')`
|
|
const GuideAction = styled('div')`
|
|
display: grid;
|
|
display: grid;
|
|
grid-template-rows: repeat(2, auto);
|
|
grid-template-rows: repeat(2, auto);
|
|
- grid-gap: ${space(1)};
|
|
|
|
|
|
+ gap: ${space(1)};
|
|
`;
|
|
`;
|
|
|
|
|
|
const StyledButton = styled(Button)`
|
|
const StyledButton = styled(Button)`
|