This commit is contained in:
2023-11-29 15:22:06 +01:00
parent 6d4d6077af
commit a09a2d54eb
6 changed files with 119 additions and 202 deletions
+5 -5
View File
@@ -65,10 +65,11 @@ export default defineComponent({
.card_body {
display: grid;
grid-template-rows: 60px 80%;
grid-template-rows: auto 1fr auto;
height: 90vh;
max-height: 550px;
padding: 0.5em;
gap: 1em;
}
.card_content {
@@ -82,12 +83,11 @@ export default defineComponent({
h1 {
text-align: center;
margin: 0;
padding: 0.5em 0;
font-size: 2.5em;
}
.card_actions {
display: flex;
justify-content: flex-end;
display: grid;
grid-template-columns: minmax(100px, 1fr);
}
</style>