@charset 'UTF-8';

/**
 * Fix WP Admin bar style
 * Default admin bar style will set postion from fixed to absolute on <= 600
 * This with combination with the html margin-top, which it sets 
 * will leave a hole on top of the body
 * @see admin-bar.min.css + inline styles
 */

@media screen and (max-width:600px) {
	#wpadminbar {
		margin-top: -46px; /*same as height*/
	} 
}