Skip to content
Snippets Groups Projects
team.scss 1.17 KiB
Newer Older
@use 'styles/mixins.scss'as mx;
@use 'styles/settings.scss'as s;

.landing-page {
    .team-section {
        .heading-container {
            text-align: center;
        }
        .team-container {
            @include mx.breakpoint(large) {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        .team-list {
            margin-top: 20px;
        }

        .team-member {
            margin: 30px 0;

            @include mx.breakpoint(medium) {
                background: s.$background-white;
                padding: 50px;
                border-radius: 25px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .tag {
                margin-bottom: 10px;
                padding: 2px 15px;
            }

            .team-member-image {
                margin-right: 0;
                margin-bottom: 3rem;
                border-radius: 50%;

                @include mx.breakpoint(medium) {
                    margin-right: 3rem;
                    margin-bottom: 0;
                }
            }
        }
    }
}