/*to use global variables, import them into your component stylesheet*/
@import "./../../../styles/global.scss";

.drawer-link {
    margin: 0;
    display: block;
    font-size: 15px;
    padding: 12px 40px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
}

.drawer-link.active {
    background-color: rgba(255, 255, 255, 0.08);
    color: $white;
}

.drawer-link.space-above {
    margin-top: auto;
}

.drawer-link:hover {
    color: $white;
}

.drawer-link:active {
    background-color: rgba(255, 255, 255, 0.04);
}

.drawer-link.inactive {
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    background-color: transparent;
}

.drawer-link .material-icons {
    float: left;
    margin-right: 16px;
    color: inherit;
}

@media (max-width: 800px) {
    .drawer-link {
        padding-left: 24px;
        padding-right: 24px;
    }
}
