Skip to content

Commit 52f804e

Browse files
authored
Merge pull request #81 from ion1ze/master
bugfix: 移动端浅色模式下标题语言颜色异常
2 parents 18880c7 + de5cda9 commit 52f804e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/views/Login/Login.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,16 @@
3232
>
3333
<!-- 右上角的主题、语言选择 -->
3434
<div
35-
class="flex items-center justify-between text-white at-2xl:justify-end at-xl:justify-end"
35+
class="flex items-center justify-between at-2xl:justify-end at-xl:justify-end"
36+
style="color: var(--el-text-color-primary);"
3637
>
3738
<div class="flex items-center at-2xl:hidden at-xl:hidden">
3839
<img alt="" class="mr-10px h-48px w-48px" src="@/assets/imgs/logo.png" />
39-
<span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
40+
<span class="text-20px font-bold" >{{ underlineToHump(appStore.getTitle) }}</span>
4041
</div>
4142
<div class="flex items-center justify-end space-x-10px h-48px">
4243
<ThemeSwitch />
43-
<LocaleDropdown class="dark:text-white lt-xl:text-white" />
44+
<LocaleDropdown />
4445
</div>
4546
</div>
4647
<!-- 右边的登录界面 -->

0 commit comments

Comments
 (0)