Commit 1f4e89df authored by XM's avatar XM Committed by 陈帅

fix #4079 PageHeaderWrapper margin in xs screen (#4081)

* fix PageHeaderWrapper margin in xs screen, #4079

* fix: PageHeaderWrapper doesn't perform as expected on xs screen
parent 46d8462c
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
} }
@media screen and (max-width: @screen-sm) { @media screen and (max-width: @screen-sm) {
.content { .children-content {
margin: 24px 0 0; margin: 24px 0 0;
} }
} }
...@@ -77,34 +77,34 @@ ...@@ -77,34 +77,34 @@
margin-left: 88px; margin-left: 88px;
text-align: right; text-align: right;
} }
}
@media screen and (max-width: @screen-xl) { @media screen and (max-width: @screen-xl) {
.extraContent { .extraContent {
margin-left: 44px; margin-left: 44px;
}
} }
}
@media screen and (max-width: @screen-lg) { @media screen and (max-width: @screen-lg) {
.extraContent { .extraContent {
margin-left: 20px; margin-left: 20px;
}
} }
}
@media screen and (max-width: @screen-md) { @media screen and (max-width: @screen-md) {
.row { .row {
display: block; display: block;
} }
.action, .action,
.extraContent { .extraContent {
margin-left: 0; margin-left: 0;
text-align: left; text-align: left;
}
} }
}
@media screen and (max-width: @screen-sm) { @media screen and (max-width: @screen-sm) {
.detail { .detail {
display: block; display: block;
}
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment