|
|
@@ -20,16 +20,16 @@ const UesrList: React.FC<UserListProps> = ({ onlineList }) => {
|
|
|
const intl = useIntl()
|
|
|
return (
|
|
|
<>
|
|
|
+ <span className="absolute top-70 left-[-0.75rem]" onClick={() => setVisible(!visible)}>
|
|
|
+ <div className="side-bg">
|
|
|
+ <span className={['side-bg-current', visible ? 'show-side-bg' : ''].join(' ')} />
|
|
|
+ </div>
|
|
|
+ </span>
|
|
|
<div
|
|
|
className={[
|
|
|
'book-list border border-solid border-hex-1d1d1d border-opacity-7 bg-hex-f7f9fa flex flex-col bg-hex-f9f7fa text-hex-666',
|
|
|
visible ? 'show-short' : ''
|
|
|
].join(' ')}>
|
|
|
- <span className="absolute top-70 left-[-0.75rem]" onClick={() => setVisible(!visible)}>
|
|
|
- <div className="side-bg">
|
|
|
- <span className="side-bg-current" />
|
|
|
- </div>
|
|
|
- </span>
|
|
|
<div className="flex-1 h-full custom-scroll">
|
|
|
<div className="w-full">
|
|
|
<ul className="list-none m-0">
|