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 commitpull/2459/head^22938d510c8
. * Revert "fix(readme): update required node version in prerequisites section" This reverts commit848e1a1535
. Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
parent
b540f44d6c
commit
8c173c840b
|
@ -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 New Issue