()
| 27 | } |
| 28 | |
| 29 | export const getStyle: PlasmoGetStyle = () => { |
| 30 | const style = document.createElement("style") |
| 31 | style.textContent = ` |
| 32 | .codebox-copyCodeHeader { |
| 33 | height: 0; |
| 34 | display: flex; |
| 35 | justify-content: space-between; |
| 36 | width: 100%; |
| 37 | background: transparent; |
| 38 | } |
| 39 | .codebox-copyCodeBtn { |
| 40 | margin-right: 3px; |
| 41 | border: 0; |
| 42 | cursor: pointer; |
| 43 | height: 28px; |
| 44 | }` |
| 45 | return style |
| 46 | } |
| 47 | |
| 48 | const HOST_ID = "codebox-copycode" |
| 49 | export const getShadowHostId: PlasmoGetShadowHostId = () => HOST_ID |
nothing calls this directly
no outgoing calls
no test coverage detected