diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-03 18:35:21 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-05-03 18:35:21 +0800 |
commit | cf9555debc445f6645cfdf4e9835247abc084638 (patch) | |
tree | 93c88fd43435bd9100acc781fa62b0bc92416fdf | |
parent | 528008b1a9d6d74434b34568bb4c3ba29a355b0c (diff) | |
download | dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar.gz dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar.bz2 dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar.lz dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar.xz dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.tar.zst dexon-sol-tools-cf9555debc445f6645cfdf4e9835247abc084638.zip |
Fix logo left padding on mobile
-rw-r--r-- | packages/website/ts/components/top_bar/top_bar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx index 0c32f4c62..95e6276bf 100644 --- a/packages/website/ts/components/top_bar/top_bar.tsx +++ b/packages/website/ts/components/top_bar/top_bar.tsx @@ -193,7 +193,7 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { return ( <div style={{ ...styles.topBar, ...bottomBorderStyle, ...this.props.style }} className="pb1"> <div className={parentClassNames}> - <div className="col col-2 sm-pl2 md-pl2 lg-pl0" style={{ paddingTop: 15 }}> + <div className="col col-2 sm-pl1 md-pl2 lg-pl0" style={{ paddingTop: 15 }}> <Link to={`${WebsitePaths.Home}`} className="text-decoration-none"> <img src={logoUrl} height="30" /> </Link> |