better mobile dash

This commit is contained in:
2025-05-28 22:45:43 +02:00
parent 4f8261bda9
commit 096a70bb5d
2 changed files with 18 additions and 1 deletions

View File

@@ -33,6 +33,23 @@
color: var(--primary-color); color: var(--primary-color);
} }
/* Card Header Button Styles */
.card-body .d-flex.justify-content-between > div:last-child {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: flex-end;
width: 100%;
}
@media (min-width: 576px) {
.card-body .d-flex.justify-content-between > div:last-child {
flex-direction: row;
align-items: center;
width: auto;
}
}
/* Button Styles */ /* Button Styles */
.btn-primary { .btn-primary {
background-color: var(--primary-color); background-color: var(--primary-color);

View File

@@ -48,7 +48,7 @@
{% if current_user.is_admin %} {% if current_user.is_admin %}
{{ contacts(recent_contacts) }} {{ contacts(recent_contacts) }}
{{ contact_status(active_count, inactive_count) }} <!-- {{ contact_status(active_count, inactive_count) }} -->
{% endif %} {% endif %}
{{ starred_files(starred_count, file_count) }} {{ starred_files(starred_count, file_count) }}