mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-02 11:59:07 -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,
|
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
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
|
||||||
&.hidden {
|
&.collapsed {
|
||||||
width: 10px;
|
width: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue