Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

@use "../css/shared/variables";
@use "../css/shared/breakpoints";

.profile_info {
    width: 100%;
    padding: 25px 20px;
    border: 1px solid variables.$border-gray;
    background-color: variables.$white;
    text-align: center;
    margin-bottom: 30px;
    border-radius: variables.$border-radius;
    h3 {
        justify-content: flex-start;
        font-weight: 700;
        font-size: 1.3rem;
    }
    h4 {
        position: absolute;
        bottom: 5px;
    }
    ul {
        display: flex;
        gap: 5px;
        justify-content: center;
    }
    &_header {
        display: flex;
        flex-direction: column;
        &_imgContainer {
            overflow: hidden;
            border-radius: 100px;
            margin: 0 auto;
        }
    }
}

@include breakpoints.maxwidth("medium") {
    .profile_info {
        width: 100%;
        padding: 25px 20px;
        border: 1px solid variables.$border-gray;
        background-color: variables.$white;
        text-align: center;
        margin-bottom: 30px;
        border-radius: variables.$border-radius;
        h3 {
            justify-content: flex-start;
            font-weight: 700;
            font-size: 1.3rem;
        }
        h4 {
            position: relative;
        }
        ul {
            display: flex;
            gap: 5px;
            justify-content: center;
        }
    }
}