fix(css): fixes button misalignment when refreshing clients (#5945) r=@vladikoff

Fixes mozilla/fxa-bugzilla-mirror#456
This commit is contained in:
Vijay Budhram 2018-03-01 21:37:40 +00:00 коммит произвёл Vlad Filippov
Родитель a336fba0e8
Коммит 20863f876f
2 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -79,7 +79,7 @@
<div class="button-row">
<button type="submit" class="settings-button primary clients-refresh">{{#t}}Refresh{{/t}}</button>
<button class="settings-button secondary cancel">{{#t}}Done{{/t}}</button>
<button class="settings-button secondary cancel clients-done">{{#t}}Done{{/t}}</button>
</div>
</form>
</div>

Просмотреть файл

@ -197,10 +197,12 @@ body.settings #main-content.card {
}
}
html[dir] .clients & {
@include respond-to('small') {
float: none;
margin: 10px 0;
&:not(.clients-done) {
html[dir] .clients & {
@include respond-to('small') {
float: none;
margin: 10px 0;
}
}
}
}