Add response if we got any new dlcs or not #64

This commit is contained in:
Novattz
2025-12-23 02:59:12 +01:00
parent 7960019cd9
commit 04910e84cf
4 changed files with 48 additions and 15 deletions

View File

@@ -162,16 +162,28 @@
border-radius: var(--radius-sm);
margin-bottom: 0.75rem;
.update-success-message {
.update-message {
color: var(--text-primary);
font-weight: 600;
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.dlc-update-icon {
color: var(--success);
&.dlc-update-success {
.update-message {
.dlc-update-icon-success {
color: var(--success);
}
}
}
&.dlc-update-info {
.update-message {
.dlc-update-icon-info {
color: var(--info);
}
}
}
}