Skip to content

Commit

Permalink
Fixed config responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Dec 30, 2019
1 parent 91bf7ee commit 28c25db
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions src/assets/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,21 @@ body {
font-size: 14px;
}


input[type="number"] {
-moz-appearance: textfield;
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
}

a {
text-decoration: none;
color: #4eafe6;
}

.layout-topbar {
background-color: #ffffff;
display: block;
Expand Down Expand Up @@ -941,25 +956,6 @@ body {
}
}

@media screen and (max-width: 1024px) {
.layout-config {
top: 110px;
height: calc(100% - 110px);
transform: translate3d(100%,0,0);

.layout-config-button {
left: auto;
right: -52px;
}

&.layout-config-active {
width: 100%;
transform: translate3d(0,0,0);
}
}
}


.clearfix {
display: inline-block;

Expand Down Expand Up @@ -1310,20 +1306,23 @@ body {
.layout-content .content-section.content-submenu ul li {
width: 50%;
}
}

input[type="number"] {
-moz-appearance: textfield;
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
.layout-config {
top: 110px;
height: calc(100% - 110px);
transform: translate3d(100%,0,0);

.layout-config-button {
left: auto;
right: -52px;
}

&.layout-config-active {
width: 100%;
transform: translate3d(0,0,0);
}
}
}
a{
text-decoration: none;
color: #4eafe6;
}

@media screen and (max-width: 640px) {
.layout-topbar {
Expand Down

0 comments on commit 28c25db

Please sign in to comment.