Skip to content
Snippets Groups Projects

feat(plugins): set active plugin container height to full

Merged mateusz-winiarczyk requested to merge MIN-301-active-plugin-container into development
1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -13,7 +13,11 @@ export const PluginContent = (): JSX.Element => {
${getPluginContentStyle(selectedPlugin)}
`}
</style>
<div id={PLUGINS_CONTENT_ELEMENT_ID} data-testid="drawer-plugins-content" />
<div
id={PLUGINS_CONTENT_ELEMENT_ID}
data-testid="drawer-plugins-content"
className="h-full"
/>
</>
);
};
Loading