修改样式

This commit is contained in:
al 2024-07-01 20:59:34 +08:00
parent 5ef978bd04
commit 45da9dcfe3
1 changed files with 3 additions and 3 deletions

View File

@ -200,7 +200,7 @@ export default function IncomeQuerry({ children }) {
<p className="text-xs my-2">*当前页面所有统计单位均为钻石</p>
<div className="rounded-2xl bg-gradient-to-r from-[#FF668B] to-[#FF66F0] text-white p-4 h-max mb-4">
<div className="mb-4">
<p className="text-md mb-4 font-medium">可提现钻石</p>
<p className=" text-lg mb-4 font-medium">可提现钻石</p>
<div className="flex justify-between items-center">
<span className="text-3xl font-bold">{data.withdraw_diamonds}</span>
{/* <Link href={"#"} className="text-sm text-[#7d304c]">
@ -229,14 +229,14 @@ export default function IncomeQuerry({ children }) {
{
data.week_dashboard &&
<div className="rounded-2xl bg-gradient-to-b from-[#ff668c80] to-[#FF668B30] text-white mb-4 p-4">
<p className="text-md mb-4 font-medium">数据看板</p>
<p className="text-lg mb-4 font-medium">数据看板</p>
<div className="h-40" ref={databoard}></div>
</div>
}
{
data.income_from_dashboard &&
<div className="rounded-2xl bg-gradient-to-b from-[#ff668c80] to-[#FF668B30] text-white mb-4 p-4">
<p className="text-md mb-4 font-medium text-white">收益来源</p>
<p className="text-lg mb-4 font-medium text-white">收益来源</p>
<div className="h-40" ref={incomeOrgin}></div>
</div>
}