/*
 Theme Name: Astra Child for WhoWas
 Template: astra
 Description:    WhoWas Child Theme 
 Author:         Michael Turnbull
 Author URI:     http: //studioswest.com/
 Version: 1.0
*/


<?php
add_action('wp_enqueue_scripts', function () {
  // Load parent then child
  wp_enqueue_style('astra-parent', get_template_directory_uri() . '/style.css');
  wp_enqueue_style('astra-child', get_stylesheet_uri(), ['astra-parent'], '1.0');
});


/* Tighten the header whitespace when you want the hero flush to top */
.home .site-header {
  margin-bottom: 0;
}
