4c21392884
* update ember-cli-sass * update :not syntax to not use strings
24 lines
380 B
SCSS
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;
|
|
}
|
|
}
|