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

Commit 9f45be3

Browse files
committed
fixes issue#46
1 parent fcb88c0 commit 9f45be3

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

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)