File "_create-atom.scss"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/elementor/app/assets/styles/mixins/_create-atom.scss
File size: 426 bytes
MIME-type: text/plain
Charset: utf-8

// MIXIN: Create Atom
// - This mixin is a small to for creating an atom selector
// - This mixin uses the 'atomize' function which uses '$eps-atoms' map
// - Each Atom is configured within map.
// - Map key are 'properties' and values are mapped to tokens.
// - Please see 'tokens/,aps/_atoms.css' for more info.
@mixin create-atom($keys...) {
	$map: atomizer($keys...);
	@each $key, $value in $map {
		#{$key}: $value;
	}
}