fixed: 暗色主题下 tabs 颜色不变的问题.

This commit is contained in:
lijiahangmax
2023-11-26 21:26:10 +08:00
parent 550366e929
commit 47551edc75
14 changed files with 4348 additions and 2620 deletions

View File

@@ -50,7 +50,7 @@
style: {
text: '内容量',
textAlign: 'center',
fill: isDark ? '#ffffffb3' : '#4E5969',
fill: isDark ? '#FFFFFFB3' : '#4E5969',
fontSize: 14,
},
},
@@ -61,7 +61,7 @@
style: {
text: '928,531',
textAlign: 'center',
fill: isDark ? '#ffffffb3' : '#1D2129',
fill: isDark ? '#FFFFFFB3' : '#1D2129',
fontSize: 16,
fontWeight: 500,
},
@@ -79,7 +79,7 @@
color: isDark ? 'rgba(255, 255, 255, 0.7)' : '#4E5969',
},
itemStyle: {
borderColor: isDark ? '#232324' : '#fff',
borderColor: isDark ? '#232324' : '#FFF',
borderWidth: 1,
},
data: [

View File

@@ -60,7 +60,7 @@
<span>{{ record.increases }}%</span>
<icon-caret-up
v-if="record.increases !== 0"
style="color: #f53f3f; font-size: 8px"
style="color: #F53F3F; font-size: 8px"
/>
</div>
</template>