Skip to content
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

fix(docs-site): minor fixes #1347

Merged
merged 1 commit into from
May 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation-site/components/header-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const Navigation = ({toggleSidebar, toggleTheme}: PropsT) => {
overrides={{
List: {
style: {
width: '85px',
width: '84px',
},
},
}}
Expand Down
8 changes: 3 additions & 5 deletions documentation-site/components/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,20 @@ const PlainInput = styled<{$inputVisible: boolean}>(
({$inputVisible, $theme}) =>
({
display: $inputVisible ? 'block' : 'none',
borderWidth: '1px',
borderColor: $theme.colors.mono200,
borderWidth: '2px',
borderColor: $theme.colors.inputEnhancerFill,
borderStyle: 'solid',
paddingLeft: '42px',
color: $theme.colors.foreground,
backgroundColor: $theme.colors.inputEnhancerFill,
paddingRight: '12px',
paddingTop: '9px',
paddingBottom: '9px',
fontSize: '14px',
width: $inputVisible ? '62vw' : '250px',
backgroundColor: 'transparent',
lineHeight: '20px',
outline: 'none',
'-webkit-appearance': 'none',
':focus': {
backgroundColor: $theme.colors.background,
borderColor: $theme.colors.primary,
},
[HEADER_BREAKPOINT]: {
Expand Down
2 changes: 1 addition & 1 deletion documentation-site/pages/components/link.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default Layout;

A simple styled anchor element.

<Example title="basic" path="examples/link/basic.js">
<Example title="Basic usage" path="examples/link/basic.js">
<Basic />
</Example>

Expand Down
2 changes: 1 addition & 1 deletion documentation-site/static/examples/button/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default () => (
<StatefulMenu
items={ITEMS}
onItemSelect={() => close()}
overrides={{List: {style: {height: '150px', width: '150px'}}}}
overrides={{List: {style: {height: '150px', width: '138px'}}}}
/>
)}
>
Expand Down
3 changes: 0 additions & 3 deletions documentation-site/static/examples/header-navigation/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ export default () => (
<NavigationItem>
<Link href="#">Tab Link Two</Link>
</NavigationItem>
<NavigationItem>
<Link href="#">Tab Link Three</Link>
</NavigationItem>
</NavigationList>
<NavigationList $align={ALIGN.right}>
<NavigationItem>
Expand Down