pattern-2

 avatar
unknown
scss
4 years ago
998 B
2
Indexable
.banner-text-center-variation-1 {
    >.container {
        position: relative;  
        height: auto; 
        @media (max-width:991px ) {
          height: inherit;
        }
        >.row {
            margin-top: 0;
            >.col {
                & {
                    padding-right: calc(var(--bs-gutter-x) * .5);
                    padding-left: calc(var(--bs-gutter-x) * .5);
                    @media (max-width:991px) {
                      padding-left: 0;
                      padding-right: 0;
                    }
                }

                &:first-child {
                }

                &:nth-child(2) {
                }

                .image-wrapper {
                    >img {

                    }
                }

                h2 {

                }

                p {

                }
              
                .btn {

                }
            }               

        }
    }
}

Editor is loading...