mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 03:59:53 +03:00
fix: light theme handling (#937)
This commit is contained in:
parent
8a2e2bf8a2
commit
3d3b1bf4d8
1 changed files with 27 additions and 10 deletions
|
@ -150,16 +150,33 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.logtype-normal {
|
||||
color: white !important;
|
||||
.theme--dark {
|
||||
.logtype-normal {
|
||||
color: white !important;
|
||||
}
|
||||
.logtype-info {
|
||||
color: grey !important;
|
||||
}
|
||||
.logtype-warning {
|
||||
color: darkgoldenrod !important;
|
||||
}
|
||||
.logtype-critical {
|
||||
color: darkred !important;
|
||||
}
|
||||
}
|
||||
.logtype-info {
|
||||
color: grey !important;
|
||||
}
|
||||
.logtype-warning {
|
||||
color: darkgoldenrod !important;
|
||||
}
|
||||
.logtype-critical {
|
||||
color: darkred !important;
|
||||
|
||||
.theme--light {
|
||||
.logtype-normal {
|
||||
color: black !important;
|
||||
}
|
||||
.logtype-info {
|
||||
color: grey !important;
|
||||
}
|
||||
.logtype-warning {
|
||||
color: goldenrod !important;
|
||||
}
|
||||
.logtype-critical {
|
||||
color: red !important;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Add table
Reference in a new issue