Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 9bb28b0

Browse files
committed
Merge branch 'develop' into issue-17
2 parents 0103459 + 3432a23 commit 9bb28b0

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

client/src/components/GroupsSideMenu/filters.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
.sectionItemTitle {
104104
color: gray2;
105-
word-break: break-word;
105+
word-break: break-all;
106106
padding-right: 12px;
107107
}
108108

client/src/components/UserGroup/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export default function UserGroup({
2121
.map((group, index) => {
2222
return (
2323
<Pill
24+
className={styles.pillContainer}
2425
key={group.id}
2526
name={group.name}
2627
removable={true}

client/src/components/UserGroup/style.module.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,11 @@ div.groupContent > button:first-child {
5151
align-items: center;
5252
height: 30px;
5353
}
54+
55+
.pillContainer {
56+
max-width: -webkit-fill-available;
57+
/* Mozilla-based browsers will ignore this. */
58+
max-width: stretch;
59+
max-width: -moz-available;
60+
/* WebKit-based browsers will ignore this. */
61+
}

0 commit comments

Comments
 (0)