optimize color

This commit is contained in:
KUN1007 2023-06-13 14:40:16 +08:00
parent a015221620
commit 4a0f7c1c81
6 changed files with 4 additions and 5 deletions

View file

@ -27,7 +27,6 @@ html {
--kungalgame-red-3: #ff8182;
--kungalgame-red-4: #fa4549;
--kungalgame-red-5: #cf222e;
--kungalgame-red-6: #a40e26;
--kungalgame-purple-4: #a475f9;

View file

@ -24,6 +24,7 @@ const isUpvote = props.data.topicStatus === 2 ? 'kungalgame-comet-surround' : ''
height: 70px;
flex-shrink: 0;
border-radius: 3px;
padding: 5px;
background-color: var(--kungalgame-trans-white-5);
display: flex;
&:hover {

View file

@ -21,7 +21,7 @@ defineProps(['kungalgamer'])
<style lang="scss" scoped>
/* 发帖人信息 */
.kungalgamer {
width: 70px;
width: 60px;
height: 100%;
/* 单个帖子左右两部分发布人信息和帖子概览均为竖向弹性盒 */
display: flex;

View file

@ -31,7 +31,6 @@ const total = props.isIncome ? 'totalIncome' : 'totalExpenditure'
<style lang="scss" scoped>
/* 收入 */
.form {
/* 占 49%,目的是使得中间留下间隔 */
/* 固定高度 */
width: 460px;
margin: 0 10px;

View file

@ -4,7 +4,7 @@ defineProps(['isIncome'])
</script>
<template>
<!-- 单条Z收入记录 -->
<!-- 单条收入记录 -->
<div v-for="kun in FSLog" :key="kun.index" v-if="$props.isIncome">
<div
class="log"

View file

@ -92,6 +92,6 @@ import { Icon } from '@iconify/vue'
.sort i,
.top i {
margin-top: 5px;
color: var(--kungalgame-red-6);
color: var(--kungalgame-red-4);
}
</style>