Skip to content

Commit

Permalink
Use align-items: flex-end instead of align-items: end
Browse files Browse the repository at this point in the history
Because of the following webpack warning:

```console
WARNING in ./rca/static_src/sass/main.scss (./rca/static_src/sass/main.scss.webpack[javascript/auto]!=!./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./rca/static_src/sass/main.scss)
Module Warning (from ./node_modules/postcss-loader/dist/cjs.js):
(3:110034) from "autoprefixer" plugin: end value has mixed support, consider using flex-end instead

Code:
  align-items:end

 @ ./rca/static_src/sass/main.scss
 @ ./rca/static_src/javascript/main.entry.js 35:0-27

webpack compiled with 1 warning in 3075 ms
```
  • Loading branch information
engineervix committed Nov 24, 2024
1 parent a96a08b commit 7e26063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rca/static_src/sass/components/_programme-results.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
flex-direction: column-reverse;
padding-top: 0;
padding-bottom: 20px;
align-items: end;
align-items: flex-end;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion rca/static_src/sass/layout/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

&__upper {
align-items: end;
align-items: flex-end;
}

&__lower {
Expand Down

0 comments on commit 7e26063

Please sign in to comment.