File: /medikors/www/eng/wp-content/plugins/jupiterx-core/includes/customizer/settings/typography/h5.php
<?php
/**
* Add Jupiter settings for Fonts & Typography > Typography > Heading 5 popup to the WordPress Customizer.
*
* @package JupiterX\Framework\Admin\Customizer
*
* @since 1.0.0
*/
$section = 'jupiterx_typography_h5';
// Typography.
JupiterX_Customizer::add_responsive_field( [
'type' => 'jupiterx-typography',
'settings' => 'jupiterx_typography_h5',
'section' => $section,
'css_var' => 'h5',
'transport' => 'postMessage',
'exclude' => [ 'text_transform' ],
'default' => [
'desktop' => [
'font_size' => [
'size' => 1.25,
'unit' => 'rem',
],
'font_weight' => '500',
'line_height' => [
'size' => 1.2,
'unit' => '-',
],
],
],
'output' => [
[
'element' => 'h5, .h5',
],
],
] );