mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-04 13:48:27 -05:00
fix: changed overflow scroll to only if necessary (#3184)
This commit is contained in:
@@ -136,7 +136,7 @@ const StatusBadge = ({
|
|||||||
<Tooltip
|
<Tooltip
|
||||||
content={inProgress && tooltipContent}
|
content={inProgress && tooltipContent}
|
||||||
className={`${
|
className={`${
|
||||||
inProgress && 'hidden max-h-96 w-96 overflow-scroll sm:block'
|
inProgress && 'hidden max-h-96 w-96 overflow-y-auto sm:block'
|
||||||
}`}
|
}`}
|
||||||
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
||||||
>
|
>
|
||||||
@@ -187,7 +187,7 @@ const StatusBadge = ({
|
|||||||
<Tooltip
|
<Tooltip
|
||||||
content={inProgress && tooltipContent}
|
content={inProgress && tooltipContent}
|
||||||
className={`${
|
className={`${
|
||||||
inProgress && 'hidden max-h-96 w-96 overflow-scroll sm:block'
|
inProgress && 'hidden max-h-96 w-96 overflow-y-auto sm:block'
|
||||||
}`}
|
}`}
|
||||||
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
||||||
>
|
>
|
||||||
@@ -238,7 +238,7 @@ const StatusBadge = ({
|
|||||||
<Tooltip
|
<Tooltip
|
||||||
content={inProgress && tooltipContent}
|
content={inProgress && tooltipContent}
|
||||||
className={`${
|
className={`${
|
||||||
inProgress && 'hidden max-h-96 w-96 overflow-scroll sm:block'
|
inProgress && 'hidden max-h-96 w-96 overflow-y-auto sm:block'
|
||||||
}`}
|
}`}
|
||||||
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
tooltipConfig={{ interactive: true, delayHide: 100 }}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user