Skip to content

Commit

Permalink
Merge pull request #201 from atlassian/NONE-add-token-to-new-styling
Browse files Browse the repository at this point in the history
NONE add token to new style files
  • Loading branch information
rachellerathbone authored Nov 17, 2023
2 parents 03d7e24 + afa6651 commit e8cb25b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { css } from '@emotion/css';
import { token } from '@atlaskit/tokens';

export const mainPageContainer = css`
margin: 0 auto;
Expand All @@ -12,8 +13,8 @@ export const topPanelContainer = css`
box-shadow: 0px 2px 4px 0px #091E4240;
display: flex;
max-height: 164px;
padding: 1.5em;
margin: 2em auto 2em 0.1em;
padding: ${token('space.300')};
margin: ${token('space.400')} auto ${token('space.400')} ${token('space.025')};
`;

export const topPanelContentHeaderContainer = css`
Expand All @@ -28,7 +29,7 @@ export const topPanelContentHeader = css`
export const topPanelContent = css`
font-size: 14px;
line-height: 20px;
margin: 1em auto 1em 0;
margin: ${token('space.200')} auto ${token('space.200')} 0;
`;

export const topPanelImgContainer = css`
Expand Down

0 comments on commit e8cb25b

Please sign in to comment.