fixing scroll issue

pull/2881/head
lianahus 2 years ago committed by GitHub
parent cca0ada25e
commit e5a1e2cdaf
  1. 2
      libs/remix-ui/app/src/lib/remix-app/style/remix-app.css
  2. 5
      libs/remix-ui/vertical-icons-panel/src/lib/components/IconList.tsx

@ -8,7 +8,7 @@ pre {
overflow-x: auto;
}
.remixIDE {
width : 100vw;
width : 100%;
height : 100vh;
overflow : hidden;
flex-direction : row;

@ -12,7 +12,7 @@ interface OtherIconsProps {
function IconList ({ verticalIconsPlugin, itemContextAction, icons, theme }: OtherIconsProps) {
return (
<div id="otherIcons">
<div id="otherIcons" className="position-relative">
{
icons
.map(p => (
@ -25,7 +25,8 @@ function IconList ({ verticalIconsPlugin, itemContextAction, icons, theme }: Oth
p.profile.name
}
/>
))}
))
}
</div>
)
}

Loading…
Cancel
Save