\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /home/heznutpr/log.heznutprivate.com/dash/scss/crypto/base/

Viewing File: _tranx.scss

.tranx {
    &-list{
        font-size: 0.8125rem;
    }
    &-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem;
        &:not(:last-child){
            border-bottom: 1px solid $border-color;
        }
    }
    &-col{
        display: inline-flex;
        flex-direction: column;
    }
    &-info {
        display: inline-flex;
        align-items: center;
    }
    &-badge {
        flex-shrink: 0;
        + .tranx-data{
            @if($rtl==false){
                margin-left: 10px;
            }
            @if($rtl==true){
                margin-right: 10px;
            }
        }
    }
    &-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        width: 36px;
        font-size: 20px;
        border-radius: 50%;
        &.sm{
            height: 20px;
            width: 20px;
            font-size: 14px;
        }
        &[class*="btc"]{
            color: $brand-color-bitcoin;
            background: rgba($brand-color-bitcoin,.2);
        }
        &[class*="eth"]{
            color: $brand-color-ethereum;
            background: rgba($brand-color-ethereum,.2);
        }
        .status-success & {
            color: $success;
            background-color: rgba($success,.15);
        }
    }
    &-data{
        flex-grow: 1;
    }
    &-label{
        font-size: 0.9375em;
        font-weight: 500;
        color: $base-color;
        margin-bottom: 0.25rem;
        display: inline-flex;
        align-items: center;
        .tranx-icon{
            @if($rtl==false){
                margin-left: 0.5rem;
            }
            @if($rtl==true){
                margin-right: 0.5rem;
            }
        }
    }
    &-date{
        font-size: $fx-sz-11;
        color: $base-light;
    }
    &-amount{
        @if($rtl==false){
            text-align: right;
        }
        @if($rtl==true){
            text-align: left;
        }
        .number{
            font-size: 1.125em;
            color: $base-color;
            font-weight: 500;
            span{
                color: $base-text;
                font-weight: 400;
            }
            &-sm{
                font-size: $fx-sz-11;
                color: $base-text;
                span{
                    color: $base-light;
                }
            }
        }
    }
}

@include media-breakpoint-down(xs){
	.tranx-list.is-stretch{
	    margin-left: - $card-stretch-gap-x;
	    margin-right: - $card-stretch-gap-x;
	    border-left: 0;
	    border-right: 0;
	    border-radius: 0;
	}
}

@include media-breakpoint-up(sm){
    .tranx{
        &-item{
            padding: 1.25rem 1.5rem;
        }
        &-list{
            font-size: 1rem;
        }
        &-badge + .tranx-data{
            @if($rtl==false){
                margin-left: 16px;
            }
            @if($rtl==true){
                margin-right: 16px;
            }
        }
        &-icon{
            height: 44px;
            width: 44px;
            font-size: 24px;
            &.sm{
                height: 24px;
                width: 24px;
                font-size: 16px;
            }
        }
        &-date{
            font-size: $fx-sz-12;
        }
        &-amount{
            .number-sm{
                font-size: $fx-sz-12;
            }
        }
    }
}

// Compact view
//////////////////////////
.is-compact{
    .tranx{
        &-item{
            padding-top: .75rem;
            padding-bottom: .75rem;
        }
        &-label{
            margin-bottom: 0;
        }
        &-badge + .tranx-data{
            @if($rtl==false){
                margin-left: 16px;
            }
            @if($rtl==true){
                margin-right: 16px;
            }
        }
        &-icon{
            height: 36px;
            width: 36px;
            font-size: 20px;
        }
        &-amount{
            .number{
                font-size: 1rem;
            }
        }
    }
}