FIX: User Admin screen on mobile style was off
This commit is contained in:
parent
8b2e3bf5f1
commit
e922623da8
|
@ -553,6 +553,9 @@ section.details {
|
||||||
|
|
||||||
.display-row.associations .value {
|
.display-row.associations .value {
|
||||||
width: 750px;
|
width: 750px;
|
||||||
|
@media (max-width: $mobile-breakpoint) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-row {
|
.display-row {
|
||||||
|
@ -598,6 +601,9 @@ section.details {
|
||||||
width: 480px;
|
width: 480px;
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
|
@media (max-width: $mobile-breakpoint) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.btn {
|
.btn {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
@ -1819,7 +1825,7 @@ table#user-badges {
|
||||||
// Mobile specific style for Admin IP Lookup box
|
// Mobile specific style for Admin IP Lookup box
|
||||||
.mobile-view .admin-contents .ip-lookup .location-box {
|
.mobile-view .admin-contents .ip-lookup .location-box {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
left: 20px;
|
left: -100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cboxcontainer {
|
.cboxcontainer {
|
||||||
|
|
Loading…
Reference in New Issue