Skip to content

Commit

Permalink
responsive: Make compatible for more various width device
Browse files Browse the repository at this point in the history
  • Loading branch information
doortts committed Feb 5, 2017
1 parent 2377d5e commit b577e4d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions app/assets/stylesheets/less/_responsive.less
Original file line number Diff line number Diff line change
Expand Up @@ -468,9 +468,7 @@
}
}
.unsupported {
width: 100%;
max-width: 1199px;
min-width: 1000px;
width: 100vw;
padding: 0 10px;

.unsupported-inner {
Expand All @@ -481,12 +479,13 @@

.gnb-outer {
max-width: 1199px;
min-width: 1000px;
width: 100%;
padding:0 10px;
box-sizing: border-box;

.gnb-inner {
width:100%;
max-width:980px;
width: 100%;
}
}

Expand All @@ -498,8 +497,9 @@

.page-wrap-outer {
max-width: 1199px;
min-width: 1000px;
padding:0 10px;
width: 100%;
box-sizing: border-box;
}

.page-wrap {
Expand All @@ -525,8 +525,8 @@
.site-breadcrumb-outer {
width: 100%;
max-width: 1199px;
min-width: 1000px;
padding:0 10px;
box-sizing: border-box;

.site-breadcrumb-inner {
width: 95%;
Expand Down Expand Up @@ -610,12 +610,10 @@

.page-footer-outer {
max-width: 1199px;
min-width: 1000px;
padding:10px;

.page-footer {
width: 95%;
max-width:980px;
width: 100%;
}
}

Expand Down

0 comments on commit b577e4d

Please sign in to comment.