Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AMP-3197: align datepicker to be on same line as txt. #515

Merged
merged 1 commit into from
May 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/dashboard/DashboardFilters/DateFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
aria-labelledby="dropdownMenuButton"
>
<form class="p-2">
<div class="form-group row">
<div class="col d-flex flex-wrap justify-content-between">
<label
for="colFormLabelFrom"
class="col-sm-4 col-form-label col-form-label-sm"
Expand All @@ -34,7 +34,7 @@
v-on:input="setDisabledDate()"
></datepicker>
</div>
<div class="form-group row">
<div class="col d-flex flex-wrap justify-content-between">
<label
for="colFormLabelFrom2"
class="col-sm-4 col-form-label col-form-label-sm"
Expand All @@ -47,10 +47,10 @@
:disabled-dates="state.disabledDates"
></datepicker>
</div>
<div class="form-group row">
<div class="col d-flex flex-wrap justify-content-between">
<div class="col-sm-12">
<button
class="btn btn-info float-right"
class="btn btn-info float-right m-2"
@click="filterByDate($event)"
>
Filter
Expand Down
Loading