mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-24 16:24:18 +03:00
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:
parent
9d149f2317
commit
61e7a993bd
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user