Skip to content

Commit 3fdf3b4

Browse files
cvxluoclaude
andcommitted
fix(settings): widen teams table actions column to prevent button text clipping
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 35f09ee commit 3fdf3b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

static/app/views/settings/organizationTeams/otherTeamsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@ function TeamAction({
234234
}
235235

236236
const StyledSimpleTable = styled(SimpleTable)`
237-
grid-template-columns: 1fr 125px 150px 130px;
237+
grid-template-columns: 1fr 125px 150px auto;
238238
margin-bottom: ${p => p.theme.space.xl};
239239
240240
[data-column-name='actions'] {
241241
padding-left: 0;
242242
}
243243
244244
@media (max-width: ${p => p.theme.breakpoints.md}) {
245-
grid-template-columns: 1fr 125px 130px;
245+
grid-template-columns: 1fr 125px auto;
246246
247247
[data-column-name='projects'] {
248248
display: none;

static/app/views/settings/organizationTeams/yourTeamsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,15 @@ function YourTeamRow({
208208
}
209209

210210
const StyledSimpleTable = styled(SimpleTable)`
211-
grid-template-columns: 1fr 125px 150px 130px;
211+
grid-template-columns: 1fr 125px 150px auto;
212212
margin-bottom: ${p => p.theme.space.xl};
213213
214214
[data-column-name='actions'] {
215215
padding-left: 0;
216216
}
217217
218218
@media (max-width: ${p => p.theme.breakpoints.md}) {
219-
grid-template-columns: 1fr 125px 130px;
219+
grid-template-columns: 1fr 125px auto;
220220
221221
[data-column-name='projects'] {
222222
display: none;

0 commit comments

Comments
 (0)