This commit is contained in:
2025-10-15 16:52:39 +02:00
parent 1015e9e18f
commit 1b35c4ccc1
26 changed files with 1078 additions and 433 deletions

View File

@ -52,8 +52,8 @@
}
.modal-content {
background-color: #2a2a2a;
border: 1px solid #3a3a3a;
background-color: var(--color-surface-3);
border: 1px solid var(--color-border-default);
min-width: 300px;
max-width: 500px;
max-height: 80vh;
@ -61,18 +61,18 @@
}
.modal-header {
padding: 1rem 1.5rem;
border-bottom: 1px solid #3a3a3a;
padding: var(--space-lg) var(--space-xl);
border-bottom: 1px solid var(--color-border-default);
}
.modal-header h3 {
margin: 0;
color: rgba(255, 255, 255, 0.87);
font-size: 1rem;
color: var(--color-text-primary);
font-size: var(--font-lg);
font-weight: 600;
}
.modal-body {
padding: 1.5rem;
padding: var(--space-xl);
}
</style>