/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


// Smooth Scroll Wrapper für Bricks Builder

add_action('bricks_before_site_wrapper', function() {

echo '<div id="smooth-wrapper">';

echo '<div id="smooth-content">';

});

add_action('bricks_after_site_wrapper', function() {

echo '</div>';

echo '</div>';

});