Fixed entity icon alignment on mobile

This commit is contained in:
Fabio Manganiello 2022-04-24 01:42:14 +02:00
parent 8e2154f2b5
commit b22df768eb
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 10 additions and 2 deletions

View File

@ -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;
}
}
}