/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/* Changes the header to not be sticky when editing (doesn't show in the front end) */
body.elementor-editor-active selector {
    margin-bottom:0px !important;
}
/* Background color on sticky */
.elementor-sticky--effects {
    background-color:rgba(255, 255, 255, 0);
    transition: all 0.5s ease;
}
/* --- LOGO ---- */
/* Logo sizing before sticky */
.logo img {
    width: auto;
    max-height: 120px;
    transition: all 0.8s ease;
}
/* Logo sizing after sticky */
.elementor-sticky--effects .logo img {
    max-height: 50px;
    width: auto;
}
