CSS-Cursors icon indicating copy to clipboard operation
CSS-Cursors copied to clipboard

Use space after colon

Open impressivewebs opened this issue 8 years ago • 0 comments

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.

impressivewebs avatar May 03 '17 06:05 impressivewebs