Change height of Add New Post input box

EDIT VIA COMMENTS

<?php 
function add_styles() {
?> 
   <style type="text/css"> 
      .wp-editor-container { 
          clear: both; 
          height: 246px !important; 
      } 
   </style> 
<?php }

add_action('wp_head', 'add_styles');