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,10 +180,18 @@ export default {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
@include until($tablet) {
|
||||||
|
.icon-container {
|
||||||
|
justify-content: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
.icon-container {
|
.icon-container {
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.icon-editor {
|
.icon-editor {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue