fix(web): overflow with auto scroll instead of scroll (#2535)
* fix(readme): update setup steps * fix(readme): update required node version in prerequisites section * fix(web): overflow-auto instead of overflow-scroll * Revert "fix(readme): update setup steps" This reverts commit 2938d510c874e9298b82465baeae5af9181c01d8. * Revert "fix(readme): update required node version in prerequisites section" This reverts commit 848e1a153538475acb42daa6ddbd74dd474611f5. Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
This commit is contained in:
parent
b540f44d6c
commit
8c173c840b
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ export default function ModalContainer(props: Props) {
|
||||||
{
|
{
|
||||||
"sm:w-full sm:max-w-lg ": !props.wide,
|
"sm:w-full sm:max-w-lg ": !props.wide,
|
||||||
"sm:w-4xl sm:max-w-4xl": props.wide,
|
"sm:w-4xl sm:max-w-4xl": props.wide,
|
||||||
"overflow-scroll": props.scroll,
|
"overflow-auto": props.scroll,
|
||||||
"!p-0": props.noPadding,
|
"!p-0": props.noPadding,
|
||||||
}
|
}
|
||||||
)}>
|
)}>
|
||||||
|
|
|
@ -80,7 +80,7 @@ export default function TeamAvailabilityModal(props: Props) {
|
||||||
</div>
|
</div>
|
||||||
{props.team && props.member && (
|
{props.team && props.member && (
|
||||||
<TeamAvailabilityTimes
|
<TeamAvailabilityTimes
|
||||||
className="overflow-scroll"
|
className="overflow-auto"
|
||||||
teamId={props.team.id}
|
teamId={props.team.id}
|
||||||
memberId={props.member.id}
|
memberId={props.member.id}
|
||||||
frequency={frequency}
|
frequency={frequency}
|
||||||
|
|
Loading…
Reference in a new issue