/*
 Theme Name:   Bootscore News
 Description:  Bootscore Child theme for News
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.2.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

.header-menu ul {
    /* Prevents menu items from wrapping to a new line */
    white-space: nowrap; 
    
    /* Ensures items stay side-by-side */
    display: flex;
    
    /* Disables the wrapping feature */
    flex-wrap: nowrap; 
    
    /* Allows items to overflow the container */
    overflow: visible; 
    
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ensure individual links also stay on one line */
.header-menu ul li a {
    white-space: nowrap;
}