Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Autoría | Ultima modificación | Ver Log |

@use "./mixins.scss";

.company-info {
    @include mixins.widget;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    text-align: center;

    img {
        border-radius: 50%;
        border: 2px solid $font-color;
        height: 150px;
        width: 150px;
    }

    h3 {
        color: $title-color;
        font-size: 1.1rem;
        font-weight: 600;
    }

    span {
        color: $subtitle-color
    }

    svg,
    b {
        color: $font-color;
    }

    .row {
        gap: .5rem;
    }
}