ray5273 / docusaurus-template

docusaurus-template
https://ray5273.github.io/docusaurus-template/
0 stars 0 forks source link

external link 아이콘 사이즈가 뒤에있고 거슬림 #11

Closed ray5273 closed 1 month ago

ray5273 commented 1 month ago

https://github.com/facebook/docusaurus/discussions/8547

ray5273 commented 1 month ago
[class*='iconExternalLink_'] {
  display: none;
}

custom.css에 이거 추가하면 됨

ray5273 commented 1 month ago
/*
  Add a custom icon for sidebar confluence links
 */
[class*='iconExternalLink_'] {
  display: none;
}
.external-link-icon > a::before {
  background: url('/static/img/external-link-light-grey.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}