summary: - adds prettier formatter configuration - formats the entire repo using prettier, ignoring minified files (`*.min.css`) and heavy generated html - changes extensions of all `.html` files to `.liquid`, which is more correct and necessary for prettier to work correctly - replaces "%-" and "-%" with just "%" — manual liquid formatting using minus signs is superfluous since we are compressing and minifying the code anyway - adds CI action for running prettier check on PR and pushes to master
21 lines
716 B
SCSS
21 lines
716 B
SCSS
// bordered + pulled icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-border {
|
|
border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color});
|
|
border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius});
|
|
border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style});
|
|
border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width});
|
|
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
|
|
}
|
|
|
|
.#{$fa-css-prefix}-pull-left {
|
|
float: left;
|
|
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
|
}
|
|
|
|
.#{$fa-css-prefix}-pull-right {
|
|
float: right;
|
|
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
|
}
|