Files
sage/resources/assets/styles/components/_comments.scss
Rhys Braunschweig 248c569bff Normalize and enforce single quotes in styles
- Replace stylelint property in package.json with .stylelintrc.js
- Add string-quotes stylelint rule
- Fix quotes
2018-05-29 12:12:21 +02:00

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;
}