Skip to content
This repository has been archived by the owner on Feb 9, 2022. It is now read-only.

Commit

Permalink
Adjusting height and flex alignment on attendee list filters (#269)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Castillo <[email protected]>
  • Loading branch information
tomrndom authored Aug 29, 2023
1 parent 7aa167b commit 7bb6e1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/pages/attendees/summit-attendees-list-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ class SummitAttendeeListPage extends React.Component {
</div>
}
{enabledFilters.includes('ticketTypeFilter') &&
<div className="col-md-6" style={{ height: "61px", paddingTop: "8px" }}>
<div className="col-md-6" style={{ minHeight: "61px", paddingTop: "8px" }}>
<Dropdown
id="ticketTypeFilter"
value={attendeeFilters.ticketTypeFilter}
Expand All @@ -549,7 +549,7 @@ class SummitAttendeeListPage extends React.Component {
</div>
}
{enabledFilters.includes('badgeTypeFilter') &&
<div className="col-md-6" style={{ height: "61px", paddingTop: "8px" }}>
<div className="col-md-6" style={{ minHeight: "61px", paddingTop: "8px" }}>
<Dropdown
id="badgeTypeFilter"
value={attendeeFilters.badgeTypeFilter}
Expand All @@ -562,7 +562,7 @@ class SummitAttendeeListPage extends React.Component {
</div>
}
{enabledFilters.includes('featuresFilter') &&
<div className="col-md-6" style={{ height: "61px", paddingTop: "8px" }}>
<div className="col-md-6" style={{ minHeight: "61px", paddingTop: "8px" }}>
<Dropdown
id="featuresFilter"
value={attendeeFilters.featuresFilter}
Expand All @@ -576,7 +576,7 @@ class SummitAttendeeListPage extends React.Component {
}
{enabledFilters.includes('checkinDateFilter') &&
<>
<div className={'col-md-3'} style={{ height: "61px", paddingTop: "8px" }}>
<div className={'col-md-3'} style={{ minHeight: "61px", paddingTop: "8px" }}>
<DateTimePicker
id="checkin_date_from_filter"
format={{date:"YYYY-MM-DD", time: "HH:mm"}}
Expand All @@ -587,7 +587,7 @@ class SummitAttendeeListPage extends React.Component {
className={'event-list-date-picker'}
/>
</div>
<div className={'col-md-3'} style={{ height: "61px", paddingTop: "8px" }}>
<div className={'col-md-3'} style={{ minHeight: "61px", paddingTop: "8px" }}>
<DateTimePicker
id="checkin_date_to_filter"
format={{date:"YYYY-MM-DD", time: "HH:mm"}}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/summit-event-list-page.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
margin: 25px -15px 0px;
display: flex;
flex-wrap: wrap;
align-items: center;
align-items: start;
.col-md-6, .col-md-3 {
margin-bottom: 10px;
}
Expand Down

0 comments on commit 7bb6e1b

Please sign in to comment.