Skip to content

Commit

Permalink
ENGCOM-3763: Static test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bystritsky committed Dec 31, 2018
1 parent 6e47e58 commit 9bf7ab7
Showing 1 changed file with 32 additions and 29 deletions.
61 changes: 32 additions & 29 deletions app/code/Magento/Contact/view/frontend/web/css/source/_module.less
Expand Up @@ -2,38 +2,41 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

& when (@media-common = true) {
.contact-index-index {
.column:not(.sidebar-main){
.form.contact {
width: 50%;
float: none;
}
}
.column:not(.sidebar-additional) {
.form.contact {
width: 50%;
float: none;
}
}
}
.contact-index-index {
.column:not(.sidebar-main) {
.form.contact {
float: none;
width: 50%;
}
}

.column:not(.sidebar-additional) {
.form.contact {
float: none;
width: 50%;
}
}
}
}

// Mobile
// Mobile
.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__m) {
.contact-index-index {
.column:not(.sidebar-main){
.form.contact {
width: 100%;
float: none;
}
}
.column:not(.sidebar-additional) {
.form.contact {
width: 100%;
float: none;
}
}
}
.contact-index-index {
.column:not(.sidebar-main) {
.form.contact {
float: none;
width: 100%;
}
}

.column:not(.sidebar-additional) {
.form.contact {
float: none;
width: 100%;
}
}
}
}

0 comments on commit 9bf7ab7

Please sign in to comment.