Skip to content

Commit

Permalink
make new tables compact (thewca#10546)
Browse files Browse the repository at this point in the history
  • Loading branch information
FinnIckler authored Jan 6, 2025
1 parent 6c5b124 commit 9e04fbd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function PastCompetitionsTable({
}

return (
<Table striped basic="very">
<Table striped compact basic="very">
<Table.Header>
<Table.Row>
<Table.HeaderCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function UpcomingCompetitionTable({

return (
<div style={{ overflowX: 'scroll' }}>
<Table basic unstackable singleLine>
<Table basic unstackable compact singleLine>
<Table.Header>
<Table.Row>
{ shouldShowRegistrationStatus && <Table.HeaderCell collapsing /> }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function RegistrationAdministrationTable({
// TODO: use native ref= when we switch to semantic v3
/* eslint-disable react/jsx-props-no-spreading */
return (
<Table sortable={sortable} striped unstackable singleLine textAlign="left">
<Table sortable={sortable} striped unstackable compact singleLine textAlign="left">
<TableHeader
columnsExpanded={columnsExpanded}
isChecked={registrations.length === selected.length}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default function RegistrationList({ competitionInfo }) {
eventList={competitionInfo.event_ids}
selectedEvents={[psychSheetEvent].filter(Boolean)}
/>
<Table striped sortable unstackable singleLine textAlign="left">
<Table striped sortable unstackable compact singleLine textAlign="left">
<Table.Header>
<Table.Row>
<Table.HeaderCell
Expand Down Expand Up @@ -344,5 +344,5 @@ function PsychSheetEventSelector({
hideAllButton
id="event-selection"
/>
)
);
}

0 comments on commit 9e04fbd

Please sign in to comment.