Skip to content
Snippets Groups Projects
sidenav-menu-item.component.scss 1.06 KiB
Newer Older
@import '~@angular/material/theming';
@import '~src/assets/material-theme.scss';

#sidenav-container {
    height: 100vh;
    .mat-expansion-panel {
        border-radius: 0px;
    }
    h3 {
        font-weight: 400;
    }
}

#menu-items-container {
    div {
        border-top: 1px solid rgba(0, 0, 0, 0.54);
        padding-top: 20px;
    }
}

.sidenav-link-btn {
    width: 90%;
    text-align: left;
    border: 1px solid #b7b7b7;
    border-radius: 4px;
    padding: 1px 10px;
    text-transform: uppercase;
    color: map-get($uw-primary, 500);
    font-weight: 500;
    margin-bottom: 6px !important;
    .material-icons {
        padding-right: 8px;
    }
}

#course-key-list {
    list-style-type: none;
    padding: 20px 0 0px 0;
    margin-top: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.54);
    li {
        padding-bottom: 12px;
        position: relative;
        padding-left: 2.6em;
        .material-icons, .not-offered {
            position: absolute;
pnogal's avatar
pnogal committed
            left: 2px;
            top: -2px;
        }
    }
}

.not-offered {
    top: 0 !important;
}