Skip to content
Snippets Groups Projects
attachments-list.component.scss 776 B
Newer Older
  • Learn to ignore specific revisions
  • Alex ORLUC's avatar
    Alex ORLUC committed
    @import '../../css/vars.scss';
    
    .mat-card {
        box-shadow: none;
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    }
    
    .infosPj {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        box-shadow: 0 -5px 5px -5px #333;
        border-top: solid 1px rgba(0, 0, 0, 0.12);
        position: absolute;
        width: 100%;
        bottom: 0;
        padding: 5px;
    
        .line {
            display: flex;
    
            div {
                flex: 1;
            }
        }
    }
    
    .subInfos {
        font-size: 12px;
        color: $primary;
        font-weight: bold;
    }
    
    .subInfosBottom {
        font-size: 12px;
        color: #666;
    }
    
    .mat-icon {
        height: auto;
    }
    
    .downloadButton {
        position: absolute;
        right: 5px;
        top: 5px;
        opacity: 0.5;
        transition: opacity 0.2s ease-in-out;
    }
    
    .downloadButton:hover {
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
    }