Remove redundant margins

This commit is contained in:
2024-08-29 15:44:17 +02:00
parent c877d0bf2d
commit fa4084c24b
7 changed files with 6 additions and 11 deletions

View File

@@ -188,12 +188,13 @@ onMount(() => {
max-width: 100%;
background: var(--body_background);
border-radius: 8px;
padding: 8px;
padding: 2px;
text-align: initial;
}
.card_component {
flex: 1 1 auto;
overflow: auto;
padding: 6px;
}
.size_1 { width: 400px; }
.size_1 > .card_component { max-height: 400px; }
@@ -214,5 +215,6 @@ onMount(() => {
margin: 0;
font-size: 1.5em;
border-bottom: none;
text-align: center;
}
</style>