fix: fixed width profile after tablet resolution

This commit is contained in:
Alejandro Gomez 2023-07-01 19:16:45 +02:00
parent 49683c8cbd
commit c733c4066a
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -3,8 +3,11 @@
justify-content: center;
}
.profile-page .profile-container {
max-width: 620px;
@media (min-width: 768px) {
.profile-page .profile-container {
width: 620px;
}
}
.profile-page .profile-content {