- Replace stylelint property in package.json with .stylelintrc.js - Add string-quotes stylelint rule - Fix quotes
24 lines
367 B
SCSS
24 lines
367 B
SCSS
.comment-list {
|
|
@extend .list-unstyled;
|
|
}
|
|
|
|
.comment-list ol {
|
|
list-style: none;
|
|
}
|
|
|
|
.comment-form p {
|
|
@extend .form-group;
|
|
}
|
|
|
|
.comment-form input[type='text'],
|
|
.comment-form input[type='email'],
|
|
.comment-form input[type='url'],
|
|
.comment-form textarea {
|
|
@extend .form-control;
|
|
}
|
|
|
|
.comment-form input[type='submit'] {
|
|
@extend .btn;
|
|
@extend .btn-secondary;
|
|
}
|