fix: remove duplicate eyebrow headers from settings cards and fix grid width

- Drop the redundant 'Settings' eyebrow from both Overlay and
  Integrations cards; the h3 heading is sufficient
- Change dashboard-grid from auto-fit/minmax to repeat(2, 1fr) so the
  two settings cards always split the full width evenly
This commit is contained in:
2026-04-28 15:02:27 +02:00
parent b615834789
commit 40afc0cf68
2 changed files with 1 additions and 5 deletions
+1 -3
View File
@@ -1041,7 +1041,7 @@ button:disabled:hover {
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
grid-template-columns: repeat(2, 1fr);
gap: 20px;
align-items: start;
}
@@ -3146,8 +3146,6 @@ button:disabled:hover {
.dashboard-grid {
grid-template-columns: 1fr;
}
.danger-zone-item {
flex-direction: column;
}