Skip to content

Commit

Permalink
maintain size equality
Browse files Browse the repository at this point in the history
  • Loading branch information
bruugey committed May 20, 2024
1 parent 1909478 commit b88f4f9
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/components/content-stack/TwoColumnExampleCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from "@emotion/css";
import { spacing } from "@leafygreen-ui/tokens";
import { ExampleCardBlock } from "./ExampleCardBlock";
import { TwoColumnExampleCardBlockProps } from "./types";
import { css } from '@emotion/css';
import { spacing } from '@leafygreen-ui/tokens';
import { ExampleCardBlock } from './ExampleCardBlock';
import { TwoColumnExampleCardBlockProps } from './types';

export const TwoColumnExampleCard = ({
entry,
Expand Down Expand Up @@ -35,7 +35,16 @@ export const TwoColumnExampleCard = ({
}}
/>
</div>
<div>
<div
className={css`
display: flex;
flex: 1;
flex-direction: column;
align-items: start;
justify-content: flex-start;
max-width: 100%;
`}
>
<ExampleCardBlock
entry={{
title: entry.title,
Expand Down

0 comments on commit b88f4f9

Please sign in to comment.