bits and bob

This commit is contained in:
Tickbase
2025-05-18 17:57:36 +02:00
parent 4b70cec6e9
commit 79fd51c5e5
20 changed files with 173 additions and 55 deletions

View File

@@ -109,6 +109,10 @@
overflow-y: auto;
flex: 1;
@include custom-scrollbar;
p {
margin-bottom: 1rem;
}
}
// Dialog footer

View File

@@ -33,7 +33,7 @@
// Instruction container
.instruction-container {
margin-top: 1.5rem;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border-soft);

View File

@@ -69,6 +69,44 @@
min-height: 3rem;
}
.loading-status-log {
margin: 1rem 0;
text-align: left;
max-height: 100px;
overflow-y: auto;
background-color: rgba(0, 0, 0, 0.2);
border-radius: var(--radius-sm);
padding: 0.5rem;
.status-line {
margin: 0.5rem 0;
display: flex;
align-items: center;
.status-indicator {
color: var(--primary-color);
margin-right: 0.5rem;
font-size: 1.2rem;
}
.status-text {
color: var(--text-secondary);
font-size: 0.9rem;
}
&:last-child {
.status-indicator {
color: var(--success);
}
.status-text {
color: var(--text-primary);
font-weight: 600;
}
}
}
}
.progress-bar-container {
height: 8px;
background-color: var(--border-soft);

View File

@@ -77,6 +77,11 @@
transform: translateY(0);
}
&.closing {
opacity: 0;
transform: translateY(-10px);
}
// Type-specific styling
&.toast-success {
border-color: var(--success);