Address snackbar MD alignment.

master
Jonathan Garbee 2016-02-15 07:16:25 -05:00
parent 8031113c13
commit 76f59cbc65
1 changed files with 8 additions and 6 deletions

View File

@ -21,11 +21,12 @@
position: fixed;
bottom: 0;
left: 50%;
margin-right: -50%;
cursor: default;
background-color: $snackbar-background-color;
z-index: 10000;
z-index: 3;
display: block;
display: flex;
justify-content: space-between;
font-family: $preferred_font;
will-change: transform;
transform: translate(-50%, 80px);
@ -49,17 +50,19 @@
}
&__text {
padding: 14px 24px;
padding: 14px 12px 14px 24px;
vertical-align: middle;
color: white;
float: left;
}
&__action {
background: transparent;
border: none;
color: $snackbar-action-color;
float: right;
text-transform: uppercase;
padding: 14px 24px;
padding: 14px 24px 14px 12px;
@include typo-button();
overflow: hidden;
outline: none;
@ -68,7 +71,7 @@
cursor: pointer;
text-decoration: none;
text-align: center;
vertical-align: middle;
align-self: center;
&::-moz-focus-inner {
border: 0;
@ -79,4 +82,3 @@
}
}
}