Page MenuHomePhabricator

[Mobile] The designer images are too big on mobile.
Closed, ResolvedPublic

Description

IMG_0640.PNG (1×719 px, 336 KB)

Event Timeline

vshchepakina assigned this task to HuiZSF.
vshchepakina raised the priority of this task from to Medium.
vshchepakina updated the task description. (Show Details)

Will add mobile layout for artist section to solve this problem

Will add above rule for artists pictures compatible with screen 768px - 970px and less than 768px width

Already updated layout code and fixed this problem. Thanks

@media (min-width:992px) {
    .col-md-4 {
        width: 33.3333%;
    }
}
@media (min-width: 768px) {
    .col-md-4 {
        width: 33.1%;
    }
}
@media (max-width: 767px) {
    .col-md-4 {
        width: 100%;
    }
}
HuiZSF set Security to None.