dsifford/academic-bloggers-toolkit

View on GitHub
src/js/options-page/style.scss

Summary

Maintainability
Test Coverage
Selector `options-page__title` should be written in lowercase with hyphens
.options-page__title {
Properties should be ordered align-items, display, justify-content
Line should be indented 2 spaces, but was indented 4 spaces
display: flex;
Line should be indented 2 spaces, but was indented 4 spaces
justify-content: space-between;
Line should be indented 2 spaces, but was indented 4 spaces
align-items: center;
 
Line should be indented 2 spaces, but was indented 4 spaces
Avoid qualifying class selectors with an element.
a.button-primary {
font-size: 16px;
height: 40px;
line-height: 38px;
}
}
 
form {
Line should be indented 2 spaces, but was indented 4 spaces
.postbox {
margin: 0;
}
 
Line should be indented 2 spaces, but was indented 4 spaces
.abt-submit-row {
margin-bottom: 20px;
text-align: right;
}
 
Avoid qualifying attribute selectors with an element.
Line should be indented 2 spaces, but was indented 4 spaces
Avoid qualifying class selectors with an element.
input[type='submit'].button-primary {
margin-top: 8px;
}
}
 
Selector `how-to__container` should be written in lowercase with hyphens
.how-to__container {
Line should be indented 2 spaces, but was indented 4 spaces
display: flex;
Line should be indented 2 spaces, but was indented 4 spaces
flex-wrap: wrap;
}
 
Selector `how-to__item` should be written in lowercase with hyphens
.how-to__item {
Line should be indented 2 spaces, but was indented 4 spaces
flex: auto;
Line should be indented 2 spaces, but was indented 4 spaces
min-width: 300px;
Line should be indented 2 spaces, but was indented 4 spaces
Properties should be ordered flex, min-width, padding, width
width: 500px;
Line should be indented 2 spaces, but was indented 4 spaces
padding: 0 5px;
}