Fixed display of homepage split line in dark mode
This commit is contained in:
parent
a460327222
commit
13f4025c29
@ -256,6 +256,14 @@ export function lang() {
|
||||
CHS:{
|
||||
title: '更新日志',
|
||||
timeline: [
|
||||
{
|
||||
label: '修复黑暗模式下主页分割线显示问题',
|
||||
tag:'bug修复',
|
||||
content: [
|
||||
'之前黑暗模式下主页密码分割线过亮,造成强烈的视觉撕裂感,现已修复',
|
||||
'2020-03-04'
|
||||
]
|
||||
},
|
||||
{
|
||||
label: '新增控制台vConsole',
|
||||
tag:'功能更新',
|
||||
@ -309,6 +317,14 @@ export function lang() {
|
||||
EN:{
|
||||
title: 'Update Log',
|
||||
timeline: [
|
||||
{
|
||||
label: 'Fixed display of homepage split line in dark mode',
|
||||
tag:'Bug fix',
|
||||
content: [
|
||||
'The homepage password dividing line was too bright in the dark mode, causing a strong visual tearing.',
|
||||
'2020-03-04'
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'Add vConsole',
|
||||
tag:'Feature update',
|
||||
|
@ -89,6 +89,8 @@
|
||||
<div class="code-card" v-for="(code, index) in show_list" :key="index" @click="turnToDetail(code)">
|
||||
<p class="md-title">{{ code.title }}</p>
|
||||
<p class="md-caption">{{ code.user_name }}</p>
|
||||
<md-divider></md-divider>
|
||||
<div style="margin-bottom: .3rem;"></div>
|
||||
</div>
|
||||
|
||||
<md-speed-dial class="md-bottom-right" v-if="show_list.length != 0 || search_start">
|
||||
@ -464,8 +466,14 @@ export default {
|
||||
}
|
||||
}
|
||||
.code-card {
|
||||
padding: 0.3rem 0;
|
||||
border-bottom: 1px #eee solid;
|
||||
p:first-of-type{
|
||||
margin-top: .3rem;
|
||||
}
|
||||
p:last-of-type {
|
||||
margin-bottom: .3rem;
|
||||
}
|
||||
// padding: 0.3rem 0;
|
||||
// border-bottom: 1px #eee solid;
|
||||
}
|
||||
.md-toolbar {
|
||||
position: fixed;
|
||||
|
Loading…
x
Reference in New Issue
Block a user