Skip to content
Snippets Groups Projects
Commit 1b03f3fa authored by mateusz-winiarczyk's avatar mateusz-winiarczyk
Browse files

fix(scroll): fix scrolling on smaller screens

parent c087e2ac
No related branches found
No related tags found
1 merge request!166fix(scroll): fix scrolling on smaller screens (MIN-311)
Pipeline #88245 passed
...@@ -10,7 +10,7 @@ export const FunctionalArea = (): JSX.Element => ( ...@@ -10,7 +10,7 @@ export const FunctionalArea = (): JSX.Element => (
<div className="absolute left-[88px] top-16 z-10 w-[calc(100%-88px)]"> <div className="absolute left-[88px] top-16 z-10 w-[calc(100%-88px)]">
<MapNavigation /> <MapNavigation />
</div> </div>
<div className="absolute left-0 top-16 z-10 flex h-[calc(100%-64px)]"> <div className="absolute left-0 top-16 z-10 flex h-[calc(100%-64px)] overflow-y-auto">
<NavBar /> <NavBar />
</div> </div>
</> </>
......
...@@ -7,7 +7,7 @@ export const AvailablePluginsDrawer = (): JSX.Element => { ...@@ -7,7 +7,7 @@ export const AvailablePluginsDrawer = (): JSX.Element => {
return ( return (
<div className="h-full max-h-full" data-testid="available-plugins-drawer"> <div className="h-full max-h-full" data-testid="available-plugins-drawer">
<DrawerHeading title="Available plugins" /> <DrawerHeading title="Available plugins" />
<div className="flex flex-col gap-6 p-6"> <div className="flex h-[calc(100%-93px)] max-h-[calc(100%-93px)] flex-col gap-6 overflow-y-auto p-6">
<LoadPluginFromUrl /> <LoadPluginFromUrl />
<PrivateActivePlugins /> <PrivateActivePlugins />
<PublicPlugins /> <PublicPlugins />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment