Merge pull request #712 from 0xProject/feature/website/portal-facelift
Change relayer grid tile to use logos and primary colors
This commit is contained in:
@@ -102,6 +102,7 @@ const THROTTLE_TIMEOUT = 100;
|
||||
const TOP_BAR_HEIGHT = TopBar.heightForDisplayType(TopBarDisplayType.Expanded);
|
||||
const LEFT_COLUMN_WIDTH = 346;
|
||||
const MENU_PADDING_LEFT = 185;
|
||||
const LARGE_LAYOUT_MAX_WIDTH = 1200;
|
||||
|
||||
const styles: Styles = {
|
||||
root: {
|
||||
@@ -256,6 +257,7 @@ export class Portal extends React.Component<PortalProps, PortalState> {
|
||||
translate={this.props.translate}
|
||||
displayType={TopBarDisplayType.Expanded}
|
||||
style={{ backgroundColor: colors.lightestGrey }}
|
||||
maxWidth={LARGE_LAYOUT_MAX_WIDTH}
|
||||
/>
|
||||
<div id="portal" style={styles.body}>
|
||||
<Switch>
|
||||
@@ -680,11 +682,11 @@ interface LargeLayoutProps {
|
||||
}
|
||||
const LargeLayout = (props: LargeLayoutProps) => {
|
||||
return (
|
||||
<div className="sm-flex flex-center">
|
||||
<div className="flex-last px3">
|
||||
<div className="mx-auto flex flex-center" style={{ maxWidth: LARGE_LAYOUT_MAX_WIDTH }}>
|
||||
<div className="flex-last px2">
|
||||
<div style={styles.leftColumn}>{props.left}</div>
|
||||
</div>
|
||||
<div className="flex-auto px3" style={styles.scrollContainer}>
|
||||
<div className="flex-auto px2" style={styles.scrollContainer}>
|
||||
{props.right}
|
||||
</div>
|
||||
</div>
|
||||
@@ -696,7 +698,7 @@ interface SmallLayoutProps {
|
||||
}
|
||||
const SmallLayout = (props: SmallLayoutProps) => {
|
||||
return (
|
||||
<div className="sm-flex flex-center">
|
||||
<div className="flex flex-center">
|
||||
<div className="flex-auto px3" style={styles.scrollContainer}>
|
||||
{props.content}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user