File "css.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/carousel-item/css.php
File size: 607 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use XTS\Gutenberg\Block_CSS;
$block_css = new Block_CSS( $attrs );
$block_css->add_css_rules(
$block_selector,
array(
array(
'attr_name' => 'blockGap',
'template' => '--wd-row-gap: {{value}}px;',
),
)
);
$block_css->add_css_rules(
$block_selector,
array(
array(
'attr_name' => 'blockGapTablet',
'template' => '--wd-row-gap: {{value}}px;',
),
),
'tablet'
);
$block_css->add_css_rules(
$block_selector,
array(
array(
'attr_name' => 'blockGapMobile',
'template' => '--wd-row-gap: {{value}}px;',
),
),
'mobile'
);
return $block_css->get_css_for_devices();