Skip to content
Snippets Groups Projects
customer-select-content.component.scss 868 B
Newer Older
vitam-prg's avatar
vitam-prg committed
@import '../../../../sass/variables/colors';
@import '../../../../sass/mixins/elevation';

.modal-body {
    min-height: 100px;
}

.customer-box {
    @include elevation-1;
    display: flex;
    height: 90px;
    align-items: center;
    word-break: break-word;
    font-size: 16px;
    font-weight: 500;
    background: $white;
    border-radius: 10px;
    padding-top: 23px;
    padding-bottom: 23px;
    padding-right: 12px;
    padding-left: 30px;
    margin-bottom: 24px;
    color: #474747;
    transition: box-shadow 240ms ease-out;

    &:hover {
        @include elevation-2;
    }

    i {
        color: var(--vitamui-secondary);
vitam-prg's avatar
vitam-prg committed
        font-size: 42px;
        margin-right: 15px;
    }
}

.modal-customer-box {
    height: 60px;
    font-size: 14px;
    padding-left: 20px;

    i {
        font-size: 30px;
    }
}

.clickable {
    cursor: pointer;
}