Merge pull request #8969 from Bogomil-Stoyanov/bug/uepr-108-admin-panel

Bug: [UEPR-108] admin panel visibility
This commit is contained in:
Bogomil Stoyanov 2024-11-28 14:52:17 +02:00 committed by GitHub
commit 67150a0f2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@ const AdminPanel = ({
onOpen, onOpen,
onClose onClose
}) => ( }) => (
<div className={classNames('admin-panel', className, {hidden: !isOpen})}> <div className={classNames('admin-panel', className, {collapsed: !isOpen})}>
{isOpen ? ( {isOpen ? (
<React.Fragment> <React.Fragment>
<span <span

View file

@ -14,7 +14,7 @@
overflow: scroll; overflow: scroll;
text-shadow: none; text-shadow: none;
&.hidden { &.collapsed {
width: 10px; width: 10px;
} }

View file

@ -21,10 +21,6 @@
} }
} }
.hidden{
visibility: hidden;
}
.navigation{ .navigation{
display: flex; display: flex;
width: 100%; width: 100%;
@ -32,6 +28,10 @@
align-items: center; align-items: center;
margin-bottom: 40px; margin-bottom: 40px;
.hidden{
visibility: hidden;
}
.dotRow{ .dotRow{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;