nginxconfig.io icon indicating copy to clipboard operation
nginxconfig.io copied to clipboard

prism.css file line 44 have a error

Open liu1084 opened this issue 11 months ago • 1 comments

prism.css file line 44:

pre[class*="language-"] > code[data-prefix]:before {
  color: $676767;
  content: attr(data-prefix);
  padding-right: 8px;
}

shoud be:

pre[class*="language-"] > code[data-prefix]:before {
  color: #676767;
  content: attr(data-prefix);
  padding-right: 8px;
}

liu1084 avatar Mar 22 '24 10:03 liu1084

👋 NGINXConfig does not load prism.css directly, we build it and fix that issue in https://github.com/digitalocean/nginxconfig.io/blob/85aeab3ca84a061ee4bb28d16e2d7f61780670eb/src/nginxconfig/build/prism.js#L36

MattIPv4 avatar Mar 22 '24 15:03 MattIPv4