You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a weird occurrence wherein if you download the project as a zip from this repo, there are two, nearly identical copies of _debug_children.scss. Now I've never used this file, but, I cant imagine Sass would be very happy with two items with the exact same name if you tried to import it.
Navigating the latest version in the repo here, of course, there is only one copy. . .
// Converted Variables
// Custom Media Query Variables
/*
DEBUG CHILDREN
Just add the debug class to any element to see outlines on its
children.
*/
.debug * { outline: 1px solid gold; }
vs
// Converted Variables
// Custom Media Query Variables
/*
DEBUG CHILDREN
Docs: http://tachyons.io/docs/debug/
Just add the debug class to any element to see outlines on its
children.
*/
.debug * { outline: 1px solid gold; }
.debug-white * { outline: 1px solid white; }
.debug-black * { outline: 1px solid black; }
The text was updated successfully, but these errors were encountered:
There's a weird occurrence wherein if you download the project as a zip from this repo, there are two, nearly identical copies of
_debug_children.scss
. Now I've never used this file, but, I cant imagine Sass would be very happy with two items with the exact same name if you tried to import it.Navigating the latest version in the repo here, of course, there is only one copy. . .
vs
The text was updated successfully, but these errors were encountered: