Skip to content

Commit

Permalink
Merge pull request #15 from lucasgmelo/main
Browse files Browse the repository at this point in the history
fix: improve dark theme
  • Loading branch information
nicosh authored Sep 30, 2021
2 parents d66fa36 + bf1a2ac commit 7a02d8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,16 +136,16 @@
}

.dark .ant-select-selector {
background-color: rgba(255, 255, 255, 0.1) !important;
background-color: #272727 !important;
}

.dark .ant-select:not(.ant-select-customize-input) .ant-select-selector {
background-color: rgba(255, 255, 255, 0.1) !important;
background-color: #272727 !important;
}

.dark .ant-select-selection-item {
background-color: rgba(255, 255, 255, 0.1) !important;
border: rgba(255, 255, 255, 0.1) !important;
background-color: #272727 !important;
border: #272727 !important;
color: #fff;
}

Expand All @@ -154,8 +154,8 @@
}

.dark .ant-btn-primary {
border-color: rgba(255, 255, 255, 0.1) !important;
background: rgba(255, 255, 255, 0.1) !important;
border-color: #272727 !important;
background: #272727 !important;
}

.dark .ant-select-selection-item-remove, .dark .ant-progress-circle .ant-progress-text, .dark .ant-radio-wrapper, .dark .ant-tabs {
Expand Down

0 comments on commit 7a02d8f

Please sign in to comment.