ui/column: add `relative` class

virtualized-window
Alex Gleason 2022-03-28 18:54:43 -05:00
rodzic 75adf65ee9
commit 570164de33
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -51,7 +51,7 @@ const Column: React.FC<IColumn> = React.forwardRef((props, ref: React.ForwardedR
};
return (
<div role='region' ref={ref} aria-label={label} column-type={transparent ? 'transparent' : 'filled'}>
<div role='region' className='relative' ref={ref} aria-label={label} column-type={transparent ? 'transparent' : 'filled'}>
<Helmet><title>{label}</title></Helmet>
{renderChildren()}