@import "../scss/variables.scss";

.blog-detail-section {
    .blog-detail {
        .designer-details {
            .img {
                width:30px;
                height:30px;
            }
        }
        .blog-img {
            img {
                width:100%;
                height:100%;
            }
        }
    }
    .comments {
        border-top: 1px solid $gray-300;
        border-bottom: 1px solid $gray-300;
        .comment-card{
            border: none;
            border-left: 4px solid $primary;
            .card-img{
                width:60px;
                height:60px;
                img{
                    width:100%;
                }
            }
        }
    }
    .leave-comment {
        form {
            input,textarea {
                border:1px solid $cyan;
                padding:16px 20px;
                box-shadow: none;
            }
        }
    }
}