mirror of
https://github.com/moparisthebest/mail
synced 2024-11-23 01:12:19 -05:00
add scrolling in writer
This commit is contained in:
parent
4d75fc3f1b
commit
9311d0c14c
@ -37,4 +37,8 @@ textarea {
|
|||||||
// Basic layout
|
// Basic layout
|
||||||
.main-app-view {
|
.main-app-view {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
}
|
}
|
@ -8,10 +8,6 @@
|
|||||||
background-image: linear-gradient(to right ,$color-grey-lightest 98%, darken($color-grey-lightest, 1%) 100%);
|
background-image: linear-gradient(to right ,$color-grey-lightest 98%, darken($color-grey-lightest, 1%) 100%);
|
||||||
border-right: 1px solid $color-grey-light;
|
border-right: 1px solid $color-grey-light;
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
width: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -4,10 +4,6 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
color: $color-grey-dark;
|
color: $color-grey-dark;
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
width: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.headers {
|
.headers {
|
||||||
p {
|
p {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
color: $color-grey-dark;
|
color: $color-grey-dark;
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: hidden;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -60,6 +62,8 @@
|
|||||||
|
|
||||||
.body {
|
.body {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
|
height: 60%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
|
||||||
*[contentEditable] {
|
*[contentEditable] {
|
||||||
outline: 0px;
|
outline: 0px;
|
||||||
|
Loading…
Reference in New Issue
Block a user