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,
onClose
}) => (
<div className={classNames('admin-panel', className, {hidden: !isOpen})}>
<div className={classNames('admin-panel', className, {collapsed: !isOpen})}>
{isOpen ? (
<React.Fragment>
<span

View file

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

View file

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