changes based on LianaHus comments complete

pull/1671/head
Joseph Izang 3 years ago
parent e379b4824f
commit f09d0fd8e4
  1. 6
      libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx

@ -3,6 +3,7 @@
import React, { import React, {
Fragment, Fragment,
useEffect, useEffect,
useReducer,
useRef useRef
} from 'react' } from 'react'
@ -23,6 +24,7 @@ export function RemixUiVerticalIconsPanel ({
}: RemixUiVerticalIconsPanelProps) { }: RemixUiVerticalIconsPanelProps) {
const scrollableRef = useRef<any>() const scrollableRef = useRef<any>()
const iconPanelRef = useRef<any>() const iconPanelRef = useRef<any>()
const udappPanelRef = useRef<any>()
function onThemeChanged (themeType: any) { function onThemeChanged (themeType: any) {
const invert = themeType === 'dark' ? 1 : 0 const invert = themeType === 'dark' ? 1 : 0
@ -107,10 +109,6 @@ export function RemixUiVerticalIconsPanel ({
scrollableRef={scrollableRef} scrollableRef={scrollableRef}
/> />
</div> </div>
{scrollableRef.current && scrollableRef.current!.scrollHeight > scrollableRef.current!.clientHeight
? <i className="fa fa-chevron-up remixui_icon-chevron m-3"></i>
: null
}
<div <div
id="remixuiScrollable" id="remixuiScrollable"
className={scrollableRef.current && scrollableRef.current.scrollHeight > 500 className={scrollableRef.current && scrollableRef.current.scrollHeight > 500

Loading…
Cancel
Save