feat: dark mode support (#53)

This commit is contained in:
qier222 2020-10-25 21:04:33 +08:00 committed by GitHub
parent 4e482941ed
commit b655c59761
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 301 additions and 181 deletions

View file

@ -127,19 +127,20 @@ export default {
.video-info {
margin-top: 12px;
color: var(--color-text);
.title {
font-size: 24px;
font-weight: 600;
}
.artist {
font-size: 14px;
color: rgba(0, 0, 0, 0.88);
opacity: 0.88;
margin-top: 2px;
font-weight: 600;
}
.info {
font-size: 12px;
color: rgba(0, 0, 0, 0.68);
opacity: 0.68;
margin-top: 12px;
}
}
@ -149,7 +150,8 @@ export default {
.section-title {
font-size: 18px;
font-weight: 600;
color: rgba(0, 0, 0, 0.88);
color: var(--color-text);
opacity: 0.88;
}
}
</style>