Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-03-25 08:59:13 +0300
committerGitHub <noreply@github.com>2022-03-25 08:59:13 +0300
commit3ea0f165864e1dce4f0aa36d546cf138cb1da18d (patch)
tree0eeeaba063de44d52d46f69dfb2a3f774b06e230 /examples
parentacbd5b700f050631003adcb824120782496b4b4b (diff)
Update stylelint (#443)
* Update stylelint to v14 and switch to stylelint-config-twbs-bootstrap * Lint fixes
Diffstat (limited to 'examples')
-rw-r--r--examples/less/src/main.less2
-rw-r--r--examples/scss/src/main.scss2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/less/src/main.less b/examples/less/src/main.less
index e5d1c2a..8b3ad31 100644
--- a/examples/less/src/main.less
+++ b/examples/less/src/main.less
@@ -2,8 +2,8 @@
// responsive-font-size property with `px` unit
.selector-1 {
- background-color: #f00;
width: 300px;
+ background-color: #f00;
.font-size(32px);
}
diff --git a/examples/scss/src/main.scss b/examples/scss/src/main.scss
index 8e7250f..3fed54d 100644
--- a/examples/scss/src/main.scss
+++ b/examples/scss/src/main.scss
@@ -2,8 +2,8 @@
// font-size property with `px` unit
.selector-1 {
- background-color: #f00;
width: 300px;
+ background-color: #f00;
@include font-size(32px);
}