/* Center logo in Helios sidebar */
.border-b {
    justify-content: center;
}
.border-b a{
    padding-right:8px;
}

/* Force line breaks for long inline code*/
code {
    white-space: pre-wrap;
    word-break: break-all;
}

/* Smartphone only version
@media (max-width: 768px) {
    code {
        white-space: pre-wrap;
        word-break: break-all;
    }
}
*/

/* to poperly load this custom CSS, add this line before the </head> in public_html/dev/user/themes/helios/templates/partials/base.html.twig 

    <link rel="stylesheet" href="{{ url('theme://css/custom/custom.css') }}"> {# Custom CSS to center logo #}
    
*/