We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d353ac8 commit 0b3289fCopy full SHA for 0b3289f
1 file changed
Website/components/datamodelview/List.tsx
@@ -234,10 +234,10 @@ export const List = ({ setCurrentIndex }: IListProps) => {
234
235
{/* Virtualized list */}
236
<div
237
- className={`m-6 transition-opacity duration-300 ${loadingSection ? 'opacity-0 pointer-events-none' : 'opacity-100'}`}
+ className={`mx-6 my-6 transition-opacity duration-300 ${loadingSection ? 'opacity-0 pointer-events-none' : 'opacity-100'}`}
238
style={{
239
height: `${rowVirtualizer.getTotalSize()}px`,
240
- width: '100%',
+ width: 'calc(100% - 48px)',
241
position: 'relative',
242
visibility: flatItems.length === 0 ? 'hidden' : 'visible'
243
}}
0 commit comments