open-vault/ui/app/styles/components/confirm.scss
Matthew Irish 4c21392884
Ember cli sass update (#4496)
* update ember-cli-sass

* update :not syntax to not use strings
2018-05-02 09:09:41 -05:00

24 lines
380 B
SCSS

.confirm-action > span {
@include from($tablet) {
align-items: center;
display: flex;
}
* {
margin-left: $size-8;
}
.confirm-action-text:not(.is-block) {
text-align: right;
@include until($tablet) {
display: block;
margin-bottom: $size-8;
text-align: left;
}
}
.confirm-action-text.is-block {
text-align: left;
}
}