diff --git a/src/components/Map/PluginsDrawer/PluginContent/PluginContent.component.tsx b/src/components/Map/PluginsDrawer/PluginContent/PluginContent.component.tsx
index 143111c73513f1839bc13ef8782cc5905ebb291b..732577d8c824b0c935fd8de9ae29d88a6727c1ea 100644
--- a/src/components/Map/PluginsDrawer/PluginContent/PluginContent.component.tsx
+++ b/src/components/Map/PluginsDrawer/PluginContent/PluginContent.component.tsx
@@ -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"
+      />
     </>
   );
 };