Skip to content

Commit

Permalink
Merge branch 'main' into feature/steps-and-suffix-in-stepper-input
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGondi authored Jan 21, 2025
2 parents 1b5259c + dcf0480 commit 9edca4c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/BottomSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ export default {
&__show {
@extend .backdrop;
animation: zoom-in ease .5s;
animation: zoom-in ease .3s;
}
&__hide {
@extend .backdrop;
animation: zoom-out ease .5s;
animation: zoom-out ease .3s;
}
}
Expand Down Expand Up @@ -186,12 +186,12 @@ export default {
&__show {
@extend .bottom-sheet;
animation: slide-up ease .5s;
animation: slide-up ease .3s;
}
&__hide {
@extend .bottom-sheet;
animation: slide-down ease .5s;
animation: slide-down ease .3s;
}
&__header {
Expand Down
1 change: 1 addition & 0 deletions src/components/DateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
id="cds-date-input"
v-model="internalDate"
locale="pt-BR"
:popover="{ visibility: 'click' }"
:min-date="minDate ? new Date(minDate) : null"
:max-date="maxDate ? new Date(maxDate) : null"
:attributes="showTodayDot ? attributes: {}"
Expand Down
6 changes: 6 additions & 0 deletions src/components/Scrollable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,10 @@ export default {
}
}
}
@media (max-width: 992px) {
.scrollable__container::-webkit-scrollbar {
display: none;
}
}
</style>

0 comments on commit 9edca4c

Please sign in to comment.