drcika / apc-extension

https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension
MIT License
608 stars 24 forks source link

Extension buttons have weird font #173

Closed lakshits11 closed 1 month ago

lakshits11 commented 5 months ago

As you can see green buttons have weird font.

image

My apc settings:

"apc.font.family": "Inter",
"apc.monospace.font.family": "SF Mono",
"apc.stylesheet": {
  "*": {
    "-webkit-text-stroke-width": "0.3px"
  },
  ".mtki": {
    "font-style": "normal !important"
  }
},
"apc.iframe.style": {
  "p": {
    "font-family": "Inter"
  }
},
so1ve commented 5 months ago

As a workaround:

"apc.stylesheet": {
    "*, .extension-action:not(.codicon-drop-down-button)": {
        "font-family": "'FiraCode Nerd Font Mono', 'Maple Mono SC NF', monospace",
    },
},