HEX
Server: Apache
System: Linux server.tanduk.space 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: coachou (1042)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/coachou/public_html/wp-content/themes/colormag/assets/sass/abstracts/mixins/_structure.scss
$border-radius: (
	'br-1': 2px,
	'br-2': 4px,
);

@function br($size) {

	@if not map-has-key($border-radius, $size) {
		@error "Invalid border radius size '#{$size}'. Must be one of: #{map-keys($border-radius)}.";
	}

	@return map-get($border-radius, $size);
}