CSS-Cursors
CSS-Cursors copied to clipboard
Use space after colon
Nice job on this site!
When the user copies an item to clipboard, I notice they all look like this, which is more like minified CSS:
cursor:no-drop;
I think they would look nicer this way:
cursor: no-drop;
Notice the space between the colon and the value. Small change, but much more readable. Most people will be using this in development files, not production, so I don't think minifying the white space is necessary. They can minify in the build process later.