fix account details squished on mobile

This commit is contained in:
Nolan Lawson 2018-03-31 17:01:09 -07:00
parent 3c0d543ea1
commit 8c076622eb

View file

@ -60,4 +60,29 @@
margin-left: 5px;
font-weight: 600;
}
@media (max-width: 767px) {
.account-profile-details-item {
flex-direction: column;
margin-left: 5px;
margin-right: 5px;
}
.account-profile-details-item:last-child {
margin-right: 0;
}
.account-profile-details-item:first-child {
margin-left: 0;
}
.account-profile-details-item-title {
margin-right: 0;
text-align: center;
}
.account-profile-details-item-datum {
margin-left: 0;
text-align: center;
}
}
</style>