-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #772 from qld-gov-au/QOLDEV-267-digital-dashboard-…
…styling QOLDEV-267 fix spacing under Digital Dashboard navigation tabs
- Loading branch information
Showing
4 changed files
with
1,279 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/stories/franchises/digital-dashboard/Dashboard.stories.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Canvas, Meta, Story } from "@storybook/addon-docs"; | ||
|
||
import Dashboard from "./templates/Dashboard.html"; | ||
import Tenders from "./templates/Tenders.html"; | ||
|
||
import { QgPrimaryContent, QgContent } from "../../decorators"; | ||
|
||
import { getDecoratedParameters } from "../../helpers"; | ||
|
||
<Meta title="Franchises/DigitalDashboard" decorators={[QgPrimaryContent, QgContent]} /> | ||
|
||
# Digital Dashboard | ||
|
||
This story mimics component usages on https://www.qld.gov.au/digitalprojectsdashboard | ||
|
||
Some style is sitting in Squiz Matrix https://www.qld.gov.au/__data/assets/css_file/0015/102129/ictdashboard.css | ||
|
||
Not included in Forgov SWE documentation. | ||
|
||
## Dashboard | ||
|
||
<Canvas withSource="open"> | ||
<Story name="Dashboard" parameters={getDecoratedParameters(Dashboard)}> | ||
{() => Dashboard} | ||
</Story> | ||
</Canvas> | ||
|
||
## Tenders | ||
|
||
<Canvas withSource="open"> | ||
<Story name="Tenders" parameters={getDecoratedParameters(Tenders)}> | ||
{() => Tenders} | ||
</Story> | ||
</Canvas> |
Oops, something went wrong.