Skip to content

Commit

Permalink
fix(webui): fix missing margin of p, fix #228
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Apr 15, 2021
1 parent 92873e2 commit ad94455
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions packages/plugin-webui/client/components/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ $paddingY: 1.5rem;
.k-card-body {
padding: $paddingX $paddingY;
> :first-child {
margin-top: 0;
}
> :last-child {
margin-bottom: 0;
}
}
&.frameless .k-card-body {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-webui/client/views/layout/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ main.frameless {
.echarts {
max-width: 100%;
margin: 0 auto -3rem;
margin: 0 auto;
}
@media (min-width: 1400px) {
Expand All @@ -119,7 +119,7 @@ main.frameless {
width: 600px;
height: 400px;
max-width: 100%;
margin: 0 auto -3rem;
margin: 0 auto;
}
}
Expand Down

0 comments on commit ad94455

Please sign in to comment.