Fix: Changed overflow scroll to overflow auto (#523)
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com>
This commit is contained in:
parent
67f4f69e8a
commit
a790dc640f
8 changed files with 10 additions and 10 deletions
|
@ -35,11 +35,11 @@ body {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@include margin($zero);
|
@include margin($zero);
|
||||||
@include padding($space-normal);
|
@include padding($space-normal);
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-box {
|
.content-box {
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
@include padding($space-normal);
|
@include padding($space-normal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -133,13 +133,13 @@ $spinner-before-border-color: rgba(255, 255, 255, 0.7);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@mixin horizontal-scroll() {
|
@mixin horizontal-scroll() {
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin elegent-shadow() {
|
@mixin elegent-shadow() {
|
||||||
|
|
|
@ -212,7 +212,7 @@
|
||||||
|
|
||||||
.code {
|
.code {
|
||||||
max-height: $space-mega;
|
max-height: $space-mega;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@include padding($space-one);
|
@include padding($space-one);
|
||||||
background: $color-background;
|
background: $color-background;
|
||||||
|
|
|
@ -169,7 +169,7 @@
|
||||||
// Firefox flexbox fix
|
// Firefox flexbox fix
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-bottom: $space-small;
|
margin-bottom: $space-small;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
|
|
||||||
>li {
|
>li {
|
||||||
@include flex;
|
@include flex;
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
@include padding($space-small);
|
@include padding($space-small);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
height: 180px;
|
height: 180px;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
|
|
||||||
.emoji {
|
.emoji {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
// Outside login wrapper
|
// Outside login wrapper
|
||||||
.login {
|
.login {
|
||||||
@include full-height;
|
@include full-height;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
padding-top: $space-larger * 1.2;
|
padding-top: $space-larger * 1.2;
|
||||||
|
|
||||||
.login__hero {
|
.login__hero {
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
border-radius: $space-small;
|
border-radius: $space-small;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 60rem;
|
width: 60rem;
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
||||||
max-height: 14rem;
|
max-height: 14rem;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 24rem;
|
width: 24rem;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
|
|
Loading…
Reference in a new issue