Merge branch 'site' of github.com:wbkd/react-flow into site

This commit is contained in:
fdnklg
2020-10-06 12:11:47 +02:00
37 changed files with 114 additions and 23 deletions
+2 -2
View File
@@ -201,10 +201,10 @@ const Header = () => {
<NavItem to="/" activeClassName="active" className="mobile">
Home
</NavItem>
<NavItem to="/docs/" activeClassName="active">
<NavItem to="/docs/" activeClassName="active" partiallyActive>
Docs
</NavItem>
<NavItem to="/examples/" activeClassName="active">
<NavItem to="/examples/" activeClassName="active" partiallyActive>
Examples
</NavItem>
+2 -2
View File
@@ -26,7 +26,7 @@ const ReactFlowWrapper = styled(Box)`
border-radius: 5px;
order: 2;
${device.tablet} {
@media ${device.tablet} {
order: ${(p) => p.order};
}
@@ -58,7 +58,7 @@ const DescriptionWrapper = styled(Box)`
order: 1;
margin-bottom: ${getThemeSpacePx(3)};
${device.tablet} {
@media ${device.tablet} {
order: ${(p) => p.order};
}
`;