fix(toolbar): ensure centered toolbar
Maybe there is a case that can be triggered somehow where the toolbar becomes off center.
This commit is contained in:
parent
31011b24c2
commit
78866b0dd7
|
@ -39,8 +39,12 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
left: 0;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
padding: 12px 8px;
|
padding: 12px 8px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
transition: bottom .3s ease-in;
|
transition: bottom .3s ease-in;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: $toolbarZ;
|
z-index: $toolbarZ;
|
||||||
|
|
Loading…
Reference in New Issue