{$device}->enable ) ) { // If it is disabled in a breakpoint other than default, generate a reset style for breakpoint if( $device !== 'default' && ! empty( $this->default->enable ) && ! $this->{$device}->enable ) { $css[$device][ self::NAME ] = 'none'; } elseif( $this->{$device}->enable ) { $this->blur = $this->{$device}->blur ?? $this->blur; $this->brightness = $this->{$device}->brightness ?? $this->brightness; $this->opacity = $this->{$device}->opacity ?? $this->opacity; $css[$device][self::NAME] = "blur(" . $this->blur . "px) brightness(" . $this->brightness . "%) opacity(" . $this->opacity . "%)"; } } } return $css; } }