INSIGHT-MVP/packages/frontend/src/components/WeatherWidget.module.css
Thomas Reitz 43877bbb4a docs(crm): update Summarize.md with deployment status and test results
All CRM endpoints tested successfully on insight-dev-01.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 18:08:00 +01:00

51 lines
1 KiB
CSS

/* ============================================================
WeatherWidget - Kompakte Wetter-Anzeige
============================================================ */
.weather {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.375rem 0.75rem;
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
font-size: 0.875rem;
color: var(--color-text);
white-space: nowrap;
}
.weatherIcon {
font-size: 1.25rem;
line-height: 1;
}
.weatherTemp {
font-weight: 600;
color: var(--color-text);
}
.weatherLabel {
color: var(--color-text-secondary);
font-size: 0.8125rem;
}
.weatherCity {
color: var(--color-text-muted);
font-size: 0.75rem;
}
.hint {
font-size: 0.8125rem;
color: var(--color-text-muted);
text-decoration: none;
padding: 0.375rem 0.75rem;
border-radius: var(--radius-md);
transition: color 0.15s;
}
.hint:hover {
color: var(--color-primary);
text-decoration: underline;
}