Skip to content
Snippets Groups Projects
signature-position.component.scss 1.33 KiB
Newer Older
  • Learn to ignore specific revisions
  • .containerMobile {
        flex-direction: column;
    
        .signPosForm {
            flex: none !important;
            height: auto;
        }
    
        .signatureContainer {
            flex: 1;
        }
    }
    
    .signPosForm {
        flex: 1;
    }
    
    
    .signatureContainer {
        position: relative;
        overflow: auto;
        width: 1050px;
        display: flex;
        justify-content: center;
    }
    
    .posSignButton {
        position: sticky;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .signature {
        z-index: 2;
        position: absolute;
        border: dashed 1px var(--ion-color-danger);
        background: rgba(var(--ion-color-danger-rgb), 0.6) none repeat scroll 0% 0%;
        font-weight: bold;
        font-size: 20px;
        color: white;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .signDisabled {
        z-index: 1;
        opacity: 0.2;
        cursor: pointer;
    }
    
    .signUserName {
        position: absolute;
    
        font-weight: normal;
    
    }
    .chip-item-content {
        z-index: 9999;
        position: absolute;
        margin: 0px;
        bottom: 0px;
    }
    .chip-item {
        font-size: 7px;
        width: 15px;
        height: 15px;
        padding: 0px;
        margin: 0px;
        margin-left: 5px;
        margin-right: 5px;
        color: white;
        border-color: white;
        justify-content: center;
    }
    
    img {
        pointer-events: none;