File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ Nesting css puts our styles in highly specific contexts and makes it difficult t
319319 }
320320}
321321
322- // Crap !! This same heading style is used in the new slider section on the homepage.
322+ // Dang !! This same heading style is used in the new slider section on the homepage. I now have to unnest these style .
323323```
324324
325325** Good**
@@ -385,7 +385,7 @@ As compared to:
385385 }
386386}
387387
388- /* Crap ! When I search the repo for .selector, it's in 3 different places and 3 different files. Now I have to spend time finding
388+ /* Dang ! When I search the repo for .selector, it's in 3 different places and 3 different files. Now I have to spend time finding
389389where I should make my change */
390390```
391391
@@ -403,7 +403,7 @@ button {
403403 cursor : pointer ;
404404}
405405
406- // Crap, I need these exact styles on an <a> tag
406+ // Dang! I need these exact styles on an <a> tag
407407```
408408
409409** Good**
@@ -482,7 +482,7 @@ $('.product-actions .btn').click(function() {
482482 CartJS .addItem (variantId, 1 );
483483})
484484
485- // Crap !! Someone changed .btn to .button and now no one can add to cart!!!
485+ // Oh no !! Someone changed .btn to .button and now no one can add to cart!!!
486486```
487487
488488** Good**
You can’t perform that action at this time.
0 commit comments