diff options
Diffstat (limited to 'app/assets')
| -rw-r--r-- | app/assets/stylesheets/components/type.scss | 4 | ||||
| -rw-r--r-- | app/assets/stylesheets/layouts/_global.scss | 20 | 
2 files changed, 23 insertions, 1 deletions
diff --git a/app/assets/stylesheets/components/type.scss b/app/assets/stylesheets/components/type.scss index 7e8fc05..d4e4ecf 100644 --- a/app/assets/stylesheets/components/type.scss +++ b/app/assets/stylesheets/components/type.scss @@ -3,6 +3,10 @@  } +.font-size-16 { +	font-size: 16px; +} +  .font-size-28 {  	font-size: 28px;  } 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; +	}  }  | 
