Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/helper/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ${COMMON_STYLE}
width: 8px;
height: 8px;
border-radius: 100%;
background-color: rgb(237, 66, 69);
background-color: var(--color-red-900, rgb(237, 66, 69));
right: 8px;
top: 6px;
}
Expand All @@ -82,7 +82,7 @@ ${COMMON_STYLE}
width: 8px;
height: 8px;
border-radius: 100%;
background-color: rgb(237, 66, 69);
background-color: var(--color-red-900, rgb(237, 66, 69));
right: 8px;
top: 6px;
animation: blink 1s linear infinite;
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ if (isDevelopment) {
${buttons
.map(
(button) =>
`<button class="ui__button plugin-git-${button?.key} bg-indigo-600 hover:bg-indigo-700 focus:border-indigo-700 active:bg-indigo-700 text-center text-sm p-1" style="margin: 4px 0; color: #fff;">${button?.title}</button>`
`<button class="ui__button button plugin-git-${button?.key} text-center text-sm p-1" style="margin: 4px 0; color: var(--ls-primary-text-color, #eee);">${button?.title}</button>`
)
.join("\n")}
</div>
Expand Down