HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/web.enelar.com.co/node_modules/primeflex/core/_size.scss
@use 'sass:map';

@function size-map($default, $prefix, $size: 30) {
    $size-map: ();

    /* Add content type objects to map */
    $size-map: map.merge($default, ('#{$prefix}-min': min-content, '#{$prefix}-max': max-content, '#{$prefix}-fit': fit-content));

    /* Add rem type objects to map */
    $rem-map: ();
    @for $i from 1 through $size {
        $rem-map: map.merge($rem-map, ('#{$prefix}-#{$i}rem': $i * 1rem));
    }
    $size-map: map.merge($size-map, $rem-map);
    
    @return $size-map;
}

$width-properties: size-map((
    'w-full': 100%,
    'w-screen': 100vw,
    'w-auto': auto,
    'w-1': 8.3333%,
    'w-2': 16.6667%,
    'w-3': 25%,
    'w-4': 33.3333%,
    'w-5': 41.6667%,
    'w-6': 50%,
    'w-7': 58.3333%,
    'w-8': 66.6667%,
    'w-9': 75%,
    'w-10': 83.3333%,
    'w-11': 91.6667%,
    'w-12': 100%
), 'w') !default;

$height-properties: size-map((
    'h-full': 100%,
    'h-screen': 100vh,
    'h-auto': auto,
), 'h') !default;

$min-width-properties: (
    'min-w-0': 0px,
    'min-w-full': 100%,
    'min-w-screen': 100vw,
    'min-w-min': min-content,
    'min-w-max': max-content
) !default;

$max-width-properties: size-map((
    'max-w-0': 0px,
    'max-w-full': 100%,
    'max-w-screen': 100vw
), 'max-w') !default;

$min-height-properties: (
    'min-h-0': 0px,
    'min-h-full': 100%,
    'min-h-screen': 100vh
) !default;

$max-height-properties: size-map((
    'max-h-0': 0px,
    'max-h-full': 100%,
    'max-h-screen': 100vh
), 'max-h') !default;

@include style-class('width', $width-properties, true);
@include style-class('height', $height-properties, true);
@include style-class('min-width', $min-width-properties, true);
@include style-class('max-width', $max-width-properties, true);
@include style-class('min-height', $min-height-properties, true);
@include style-class('max-height', $max-height-properties, true);