forked from platypush/platypush
Fixed entity icon alignment on mobile
This commit is contained in:
parent
8e2154f2b5
commit
b22df768eb
1 changed files with 10 additions and 2 deletions
|
@ -180,8 +180,16 @@ export default {
|
|||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
||||
.icon-container {
|
||||
justify-content: right;
|
||||
@include until($tablet) {
|
||||
.icon-container {
|
||||
justify-content: left;
|
||||
}
|
||||
}
|
||||
|
||||
@include from($tablet) {
|
||||
.icon-container {
|
||||
justify-content: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue