Skip to content

Commit fb99928

Browse files
committed
Resolves #26
2 parents e876c97 + 5fd09fc commit fb99928

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

scout-ui/src/home/index.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@
103103
}
104104

105105
&.schema-field-basic {
106-
min-height: 141px;
106+
// min-height: 141px;
107+
margin: 24px 0;
107108
}
108109

109110
&.schema-field-object, &.schema-field-array {

scout-ui/src/minicharts/d3fns/date.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function(opts) {
3636
var height = opts.height - margin.top - margin.bottom;
3737
var el = opts.el;
3838

39-
var barcodeTop = Math.floor(height / 2 + 10);
39+
var barcodeTop = Math.floor(height / 2 + 15);
4040
var barcodeBottom = Math.floor(height - 10);
4141

4242
var barcodeX = d3.time.scale()
@@ -45,7 +45,7 @@ module.exports = function(opts) {
4545

4646
var upperBarBottom = height / 2 - 20;
4747
var upperRatio = 2.5;
48-
var upperMargin = 15;
48+
var upperMargin = 20;
4949

5050
// group by weekdays
5151
var weekdayLabels = moment.weekdays();

0 commit comments

Comments
 (0)