Browse Source

Fix monitor page margin between cards

pull/2804/head
afc163 7 years ago
parent
commit
cc4f465ca0
  1. 6
      src/pages/Dashboard/Monitor.js
  2. 2
      src/pages/Dashboard/Monitor.less

6
src/pages/Dashboard/Monitor.js

@ -145,7 +145,7 @@ class Monitor extends PureComponent {
</Col>
</Row>
<Row gutter={24}>
<Col xl={12} lg={24} sm={24} xs={24}>
<Col xl={12} lg={24} sm={24} xs={24} style={{ marginBottom: 24 }}>
<Card
title={
<FormattedMessage
@ -201,7 +201,7 @@ class Monitor extends PureComponent {
</Row>
</Card>
</Col>
<Col xl={6} lg={12} sm={24} xs={24}>
<Col xl={6} lg={12} sm={24} xs={24} style={{ marginBottom: 24 }}>
<Card
title={
<FormattedMessage
@ -216,7 +216,7 @@ class Monitor extends PureComponent {
<TagCloud data={tags} height={161} />
</Card>
</Col>
<Col xl={6} lg={12} sm={24} xs={24}>
<Col xl={6} lg={12} sm={24} xs={24} style={{ marginBottom: 24 }}>
<Card
title={
<FormattedMessage

2
src/pages/Dashboard/Monitor.less

@ -3,7 +3,7 @@
.mapChart {
padding-top: 24px;
height: 457px;
height: 452px;
text-align: center;
img {
display: inline-block;

Loading…
Cancel
Save