This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const Breadcrumbs = styled.div`
1111`
1212export const Logo = styled ( Img ) `
1313 height: 22px;
14- margin-top: 1px ;
14+ margin-top: -5px ;
1515 width: 22px;
1616 opacity: 0.7;
1717`
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ const PostItem = ({
2828 accountInfo,
2929} ) => {
3030 // debug('customization --> ', customization)
31- const { customization : { contentsLayout, contentDivider } } = accountInfo
31+ const {
32+ customization : { contentsLayout, contentDivider } ,
33+ } = accountInfo
3234
3335 /*
3436 debug('entry --> ', entry)
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ export const HeaderMailIcon = styled(HeaderMailSVG)`
1313 height: 20px;
1414 cursor: pointer;
1515 margin-right: 12px;
16- margin-top: -2px;
1716`
1817export const NofityDot = styled . div `
1918 position: absolute;
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import { withTheme } from 'styled-components'
66import fetchGeoData from './geo_data'
77
88import { Margin } from '../../components'
9+
10+ import { MapWrapper } from './styles'
911import { makeDebugger , uid , theme as themeHelper } from '../../utils'
1012
1113/* eslint-disable no-unused-vars */
@@ -147,7 +149,7 @@ class LocationMap extends React.Component {
147149
148150 render ( ) {
149151 return (
150- < div >
152+ < MapWrapper >
151153 < ReactResizeDetector
152154 handleWidth
153155 refreshMode = "debounce"
@@ -158,7 +160,7 @@ class LocationMap extends React.Component {
158160 />
159161 < div id = { this . chartId } />
160162 < Margin bottom = "10px" />
161- </ div >
163+ </ MapWrapper >
162164 )
163165 }
164166}
Original file line number Diff line number Diff line change @@ -5,3 +5,7 @@ import styled from 'styled-components'
55
66export const Wrapper = styled . div ``
77export const Title = styled . div ``
8+
9+ export const MapWrapper = styled . div `
10+ width: 100%;
11+ `
You can’t perform that action at this time.
0 commit comments