/*
 *  This stylesheet is used to manage grid layouts for the sample registry
 *  website
 * */

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-gap: 32px;
    width: 100%;
    height: 100%;
}
