Skip to content

Commit

Permalink
fix dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-hash committed Dec 15, 2024
1 parent 0f277f2 commit 05f965d
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions app/src/styles/BurnSummary.module.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
.summaryContainer {
padding: 8px;
border: 1px solid var(--color-bg-secondary);
border-radius: var(--border-radius);
background-color: var(--color-bg);
text-align: center;
color: var(--color-text);
}

.summaryContainer h3 {
margin-top: -1px;
margin-bottom: 0.25rem;
color: var(--color-text);
}

.tokenInfo {
margin-top: 0.25rem;
}

.summaryContainer {
padding: 8px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f5f5f5;
text-align: center;
color: var(--color-text);
}

.txLink {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
color: #0066cc;
color: var(--color-link);
text-decoration: none;
margin-top: 8px;
}
Expand All @@ -33,6 +36,7 @@
font-size: 1.2em;
font-weight: bold;
margin: 5px 0;
color: var(--color-text);
}

.tokenInfo {
Expand Down

0 comments on commit 05f965d

Please sign in to comment.