fix comments by using correct css comment syntax (#8019)

these intended comments were causing errors in sonarqube scans due to using wrong css comment syntax
This commit is contained in:
Ian De Bie 2021-06-07 04:30:23 -05:00 committed by GitHub
parent 9d149f2317
commit 61e7a993bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,15 +7,15 @@ h1 {
} }
pre.highlight code * { pre.highlight code * {
white-space: nowrap; // this sets all children inside to nowrap white-space: nowrap; /* this sets all children inside to nowrap */
} }
pre.highlight { pre.highlight {
overflow-x: auto; // this sets the scrolling in x overflow-x: auto; /* this sets the scrolling in x */
} }
pre.highlight code { pre.highlight code {
white-space: pre; // forces <code> to respect <pre> formatting white-space: pre; /* forces <code> to respect <pre> formatting */
} }
.main-container { .main-container {