digitalocean / nginxconfig.io

⚙️ NGINX config generator on steroids 💉
https://do.co/nginxconfig
MIT License
27.42k stars 2.01k forks source link

prism.css file line 44 have a error #472

Open liu1084 opened 4 months ago

liu1084 commented 4 months ago

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;
}
MattIPv4 commented 4 months ago

👋 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