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

Merge branch 'MIN-311-handle-vertical-scroll-properly' into 'development'

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

Closes MIN-311

See merge request !166
parents 680ecd23 035271b4
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)
Pipeline #88391 passed
......@@ -34,7 +34,7 @@ export const NavBar = (): JSX.Element => {
};
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 className="mb-8 flex flex-col gap-[10px]">
<IconButton icon="info" onClick={openDrawerInfo} title="Project info" />
......
......@@ -7,7 +7,7 @@ export const AvailablePluginsDrawer = (): JSX.Element => {
return (
<div className="h-full max-h-full" data-testid="available-plugins-drawer">
<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 />
<PrivateActivePlugins />
<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