Skip to content

Commit

Permalink
Merge pull request #160 from bcgov/DEVX1435-ImproveWizardCardStyle
Browse files Browse the repository at this point in the history
Devx1435 Design tokens + improve card styles
  • Loading branch information
oomIRL authored Jul 30, 2024
2 parents c6ce3cc + 0970c38 commit c91257e
Show file tree
Hide file tree
Showing 7 changed files with 477 additions and 401 deletions.
1 change: 1 addition & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"@backstage/plugin-user-settings": "^0.8.8",
"@backstage/theme": "^0.5.6",
"@bcgov/bc-sans": "^2.0.0",
"@bcgov/design-tokens": "^3.0.0",
"@internal/plugin-analytics-module-snowplow": "^0.1.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
Expand Down
1 change: 0 additions & 1 deletion packages/app/src/components/Root/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export const Root = ({ children }: PropsWithChildren<{}>) => {
</SidebarScrollWrapper> */}
</SidebarGroup>
<SidebarSpace />
<SidebarDivider />
<SidebarGroup
label="Offsite Links"
>
Expand Down
32 changes: 32 additions & 0 deletions packages/app/src/components/home/HomeHeaderText.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import {Typography, withStyles} from "@material-ui/core";
import * as tokens from "@bcgov/design-tokens/js";

export const BCGovBannerText = withStyles({
root: {
position: 'relative',
'&::before': {
content: `''`,
position: 'absolute',
top: '-6px',
left: '-25px',
width: '4px',
height: '64px',
background: tokens.themePrimaryGold
},
}
})(Typography);

export const BCGovHeaderText = withStyles({
root: {
position: 'relative',
'&::before': {
content: `''`,
position: 'absolute',
top: '-10px',
left: '0',
width: '36px',
height: '4px',
background: tokens.themePrimaryGold
},
}
})(Typography);
Loading

0 comments on commit c91257e

Please sign in to comment.