Fix scrubber height

This commit is contained in:
Eric Bailey
2025-01-18 18:35:19 -06:00
parent f8a9d5019e
commit 92c997b5f0
@@ -184,12 +184,13 @@ export function Scrubber({
a.justify_end,
a.py_lg,
{
paddingBottom: insets.bottom + a.py_md.paddingBottom,
paddingBottom: insets.bottom + tokens.space.md,
height:
// bottom padding
insets.bottom +
// actual height
tokens.space.xl,
tokens.space.xl +
tokens.space.md,
},
a.z_10,
]}>
@@ -226,7 +227,7 @@ export function ScrubberPlaceholder() {
a.w_full,
{
// same as Scrubber
height: bottom + tokens.space.xl,
height: bottom + tokens.space.xl + tokens.space.md,
},
]}
/>