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

fix(scroll): fix scrolling on smaller screens (MIN-311)

parent 680ecd23
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!166fix(scroll): fix scrolling on smaller screens (MIN-311)
...@@ -34,7 +34,7 @@ export const NavBar = (): JSX.Element => { ...@@ -34,7 +34,7 @@ export const NavBar = (): JSX.Element => {
}; };
return ( return (
<div className="flex min-h-full w-[88px] flex-col items-center justify-between bg-cultured py-8"> <div className="flex min-h-full w-[88px] flex-col items-center justify-between overflow-y-auto bg-cultured py-8">
<div data-testid="nav-buttons"> <div data-testid="nav-buttons">
<div className="mb-8 flex flex-col gap-[10px]"> <div className="mb-8 flex flex-col gap-[10px]">
<IconButton icon="info" onClick={openDrawerInfo} title="Project info" /> <IconButton icon="info" onClick={openDrawerInfo} title="Project info" />
......
...@@ -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