/**
 *  SASS FILE FOR ADMIN CSS
 */
/* MIXINS */
@mixin prefix($property, $value, $prefixes: ()) {
  @each $prefix in $prefixes {
    #{'-' + $prefix + '-' + $property}: $value;
  }
 
  // Output standard non-prefixed declaration
  #{$property}: $value;
}

/* TRANSITIONS */
$transition-15: all .15s ease-in-out;
$transition-1: all .1s ease-in-out;

/* ADMIN MENU ICON */
#toplevel_page_wonka-slide-admin-display {
	div.wp-menu-image.dashicons-before {
		img {
			width: 24px;
			padding-top: 5px;
		}
	}
}

/* SETTINGS PAGE CONTENT */
#ws-slide-logo-wrap {
	width: 150px;
	height: 150px;
	img {
		width: 100%;
	}
}