Hi,
Centering Content in UI Builder - YouTube I was under the impression that Desktop, tablet and phone layouts could be changed and would be independent of each other as in 3:50 seconds. Whenever I change the layout in mobile it changes the layout in desktop and Tablet which messes the designs up.
Example: 04.04.2021-11.33.01 - Can I get clarification. Thanks
I found Device responsive pages in UI builder - #2 by vladimir-upirov
This explains to add class but if I add class lets say ‘hide-Logo’ on mobile how do i enter it. Or, the reverse to show? How do I do that. Is this the way to go?
@media (max-width: @appLayoutMaxPhoneWidth) {
.hide-mobile {
display: none !important;
}
}
@media (min-width: @appLayoutMinTabletWidth) and (max-width: @appLayoutMaxTabletWidth) {
.hide-tablet {
display: none !important;
}
}
@media (min-width: @appLayoutMinDesktopWidth) {
.hide-desktop {
display: none !important;
}
}