Skip to content

Commit

Permalink
Fix datepicker being hidden in horizontal record block
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Sep 23, 2024
1 parent 55fadaa commit f9823a6
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:content-cols-md="horizontal && '7'"
:content-cols-xl="horizontal && '8'"
:class="formGroupStyleClasses"
class="date-time-field-editor"
>
<template
#label
Expand Down Expand Up @@ -90,3 +91,10 @@ export default {
extends: base,
}
</script>

<style>
/* Fix for datepicker not overflowing block when in horizontal mode */
.date-time-field-editor .form-row div {
position: initial;
}
</style>

0 comments on commit f9823a6

Please sign in to comment.