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
|
||||
.main-app-view {
|
||||
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%);
|
||||
border-right: 1px solid $color-grey-light;
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
header {
|
||||
|
||||
cursor: pointer;
|
||||
|
@ -4,10 +4,6 @@
|
||||
height: 100%;
|
||||
color: $color-grey-dark;
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.headers {
|
||||
p {
|
||||
margin: 0px;
|
||||
|
@ -2,6 +2,8 @@
|
||||
margin: 0px;
|
||||
padding: 12px;
|
||||
color: $color-grey-dark;
|
||||
height: 100%;
|
||||
overflow-y: hidden;
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
@ -60,6 +62,8 @@
|
||||
|
||||
.body {
|
||||
line-height: 1.5em;
|
||||
height: 60%;
|
||||
overflow-y: scroll;
|
||||
|
||||
*[contentEditable] {
|
||||
outline: 0px;
|
||||
|
Loading…
Reference in New Issue
Block a user