-
Notifications
You must be signed in to change notification settings - Fork 940
feat(site): Add Admin Dropdown menu #885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d6dacf9
Start porting components for Admin menu
presleyp f040a07
Merge branch 'main' into admin/presleyp/591
presleyp a9e4dd4
More porting, wip
presleyp 8944e10
Add icons
presleyp 88bac07
Extract arrow components, navHeight
presleyp 14b9e86
Add Admin Dropdown
presleyp b50b34d
Format
presleyp 8b4834f
Delete types
presleyp 25c5056
Merge branch 'main' into admin/presleyp/591
presleyp 98ec516
Fix styles
presleyp 4f7871e
Merge branch 'main' into admin/presleyp/591
presleyp 1d4c94f
Lint
presleyp f134141
Add stub pages
presleyp db542ca
Use navHeight constant
presleyp a5ca439
Move files
presleyp 6bb47e0
Add and organize stories
presleyp bc84caf
Storybook and organize text stories
presleyp 675b195
Add test
presleyp a121c7e
Lint
presleyp babde57
Merge branch 'main' into admin/presleyp/591
presleyp 466a43d
Lint
presleyp f6342da
Fix double navigation
presleyp c78fa88
Lint
presleyp 9a06d69
Wrap new routes in AuthAndNav
presleyp f1dd2c8
Undo unrelated storybook changes
presleyp acc92f8
Refactor according to conventions
presleyp 1dfb981
Merge branch 'main' into admin/presleyp/591
presleyp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Storybook and organize text stories
- Loading branch information
commit bc84caf6f8aa6292df1f44320f8a147e71d753ca
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,28 @@ | ||
import { Story } from "@storybook/react" | ||
import React from "react" | ||
import { Typography, TypographyProps } from "." | ||
|
||
export default { | ||
title: "Text/Typography", | ||
greyscaled marked this conversation as resolved.
Show resolved
Hide resolved
|
||
component: Typography, | ||
} | ||
|
||
const Template: Story<TypographyProps> = (args: TypographyProps) => ( | ||
<> | ||
<Typography {...args}> | ||
Colorless green ideas sleep furiously | ||
</Typography> | ||
<Typography {...args}> | ||
More people have been to France than I have | ||
</Typography> | ||
</> | ||
) | ||
|
||
export const Short = Template.bind({}) | ||
Short.args = { | ||
short: true | ||
} | ||
export const Tall = Template.bind({}) | ||
Tall.args = { | ||
short: false | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.