chore(learn): audit front end libraries (#41179)

* chore(learn): audit bootstrap

* chore(learn): audit FE projects

* chore(learn): audit jQuery

* chore(learn): audit React

* chore(learn): audit react-redux

* chore(learn): audit redux

* chore(learn): audit sass

* fix: apply review suggestions

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: apply non-suggestions

* chore: remove comments from code

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-02-25 09:19:24 -08:00
committed by GitHub
parent 654afae0cf
commit 31bdea63a2
47 changed files with 86 additions and 85 deletions

View File

@@ -16,17 +16,17 @@ Delete the `.red-text`, `p`, and `.smaller-image` CSS declarations from your `st
Then delete the `p` element that contains a dead link. Then remove the `red-text` class from your `h2` element and replace it with the `text-primary` Bootstrap class.
Finally, remove the "smaller-image" class from your first `img` element and replace it with the `img-responsive` class.
Finally, remove the `smaller-image` class from your first `img` element and replace it with the `img-responsive` class.
# --hints--
Your h2 element should no longer have the class `red-text`.
Your `h2` element should no longer have the class `red-text`.
```js
assert(!$('h2').hasClass('red-text'));
```
Your h2 element should now have the class `text-primary`.
Your `h2` element should now have the class `text-primary`.
```js
assert($('h2').hasClass('text-primary'));