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 10:14:21 -07:00 committed by Дамян Минков
parent 31011b24c2
commit 78866b0dd7
1 changed files with 4 additions and 0 deletions

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;