mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 02:56:20 -05:00
Merge pull request #8969 from Bogomil-Stoyanov/bug/uepr-108-admin-panel
Bug: [UEPR-108] admin panel visibility
This commit is contained in:
commit
67150a0f2d
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
overflow: scroll;
|
||||
text-shadow: none;
|
||||
|
||||
&.hidden {
|
||||
&.collapsed {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue