Browse Source

fixed monitor map image overflow width when screen is large

pull/148/head
nikogu 8 years ago
parent
commit
1bd90711e1
  1. 6
      src/routes/Dashboard/Monitor.less

6
src/routes/Dashboard/Monitor.less

@ -4,9 +4,11 @@
.mapChart {
padding-top: 24px;
height: 457px;
text-align: center;
img {
width: 100%;
max-height: 457px;
display: inline-block;
max-width: 100%;
max-height: 437px;
}
}

Loading…
Cancel
Save