Skip to content

Commit 42fc635

Browse files
committed
fix: UI issues in opportunities and requests list
1 parent bc1f9b4 commit 42fc635

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

src/apps/copilots/src/pages/copilot-opportunity-list/styles.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
gap: 8px;
88
}
99

10+
@media (max-width: 767px) {
11+
.title {
12+
min-width: 200px;
13+
}
14+
}
15+
1016
.skillPill {
1117
background-color: #d6d6d6;
1218
color: #333;

src/apps/copilots/src/pages/copilot-requests/CopilotRequestsPage.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
padding: $sp-2 0;
88
}
99

10+
@media (max-width: 767px) {
11+
.title {
12+
min-width: 200px;
13+
}
14+
}
15+
1016
.viewRequestIcon {
1117
color: $turq-180;
1218
padding: 0 $sp-1;

src/libs/ui/lib/components/content-layout/ContentLayout.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
color: $black-100;
3737
}
3838
}
39+
40+
@media (max-width: 767px) {
41+
.page-header {
42+
flex-direction: column;
43+
}
44+
}
3945
}
4046
}
4147
}

0 commit comments

Comments
 (0)