/*& grid the holds the theme buttons */
.theme-grid {

    --grid-layout-gap: 0.5rem;

    display: grid;
    grid-template-columns: repeat(auto-fill, 4rem);
    grid-template-rows: repeat(auto-fill, 4rem);
    grid-gap: var(--grid-layout-gap);

    padding: 0.5rem 0rem 0rem;

}

