Skip to content

Commit

Permalink
Actually fix button corner style clash with Refined GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Apr 5, 2023
1 parent e9d895c commit 208e2fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/dull-cherries-taste.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"github-to-linear": patch
---

Actually fix button corner style clash with Refined GitHub.
4 changes: 2 additions & 2 deletions extension/scripts/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ async function injectUI() {

const ButtonGroup = h(
'div',
{ id: linkId, class: 'BtnGroup rounded-left-2 flex-self-start ml-auto' },
{ id: linkId, class: 'BtnGroup flex-self-start ml-auto' },
// Main link to an existing issue or to create a new issue on Linear.
h(
'a',
{
href: linearIssue ? linearIssue.url : newIssueUrl,
class: 'BtnGroup-item btn btn-sm',
class: 'BtnGroup-item rounded-left-2 btn btn-sm',
},
h(
'span',
Expand Down

0 comments on commit 208e2fb

Please sign in to comment.