diff --git a/packages/frontend/src/profile/ExpertProfileTab.module.css b/packages/frontend/src/profile/ExpertProfileTab.module.css index b582cb1..c12ad4f 100644 --- a/packages/frontend/src/profile/ExpertProfileTab.module.css +++ b/packages/frontend/src/profile/ExpertProfileTab.module.css @@ -4,6 +4,18 @@ gap: 1.5rem; } +.twoColumnRow { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1.5rem; +} + +@media (max-width: 900px) { + .twoColumnRow { + grid-template-columns: 1fr; + } +} + .loading { text-align: center; color: var(--color-text-muted); diff --git a/packages/frontend/src/profile/ExpertProfileTab.tsx b/packages/frontend/src/profile/ExpertProfileTab.tsx index 2b7df7b..2362463 100644 --- a/packages/frontend/src/profile/ExpertProfileTab.tsx +++ b/packages/frontend/src/profile/ExpertProfileTab.tsx @@ -100,9 +100,12 @@ export function ExpertProfileTab() { return (
- + {/* Skills + Sprachen nebeneinander */} +
+ + +
-