diff options
Diffstat (limited to 'app/assets/stylesheets/layouts/_global.scss')
-rw-r--r-- | app/assets/stylesheets/layouts/_global.scss | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/app/assets/stylesheets/layouts/_global.scss b/app/assets/stylesheets/layouts/_global.scss index 5113083..2873b13 100644 --- a/app/assets/stylesheets/layouts/_global.scss +++ b/app/assets/stylesheets/layouts/_global.scss @@ -37,6 +37,20 @@ body { } +.border-none { + border: none; +} + + +.outline-none { + outline: none; +} + + +.width-100\% { + width: 100%; +} + .min-height-100\% { min-height: 100%; } @@ -117,8 +131,12 @@ $sidebar-width: 250px; .note-editor { margin-left: $sidebar-width; padding: 12px 15px; - font: 18px/1.7 Georgia, Times, serif; outline: none; + + textarea { + font: 18px/1.7 Georgia, Times, serif; + height: 480px; + } } |