HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //home5/cca63905/.trash/wp-content/plugins/elementor/app/assets/styles/functions/_border.scss
// 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};
}