File "_border.scss"

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

// Function: Border
// - @argument: $border-colorm $border-size(default is 1px), $border-style(default is 'solid')
// - @returns 'border values according to @arguments
// - use cases:
// 	- defining a border without specifying default values
//  - passing semantic values as @arguments

@function border($border-color, $border-size:1px, $border-style:solid){
	@return #{$border-size} #{$border-style} #{$border-color};
}