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:
Leonard Kim
2018-06-12 13:07:24 -05:00
committed by Дамян Минков
parent 31011b24c2
commit 78866b0dd7
+4
View File
@@ -39,8 +39,12 @@
box-sizing: border-box;
display: flex;
justify-content: space-between;
left: 0;
margin-left: auto;
margin-right: auto;
padding: 12px 8px;
position: absolute;
right: 0;
transition: bottom .3s ease-in;
width: 100%;
z-index: $toolbarZ;