feat: 优化内容

This commit is contained in:
sudoooooo 2024-09-27 18:24:54 +08:00
parent 81df0eae05
commit 054095e499
2 changed files with 9 additions and 10 deletions

View File

@ -55,16 +55,16 @@ const jumpConfig = computed(() => props.moduleConfig?.jumpConfig || {})
} }
.jump-btn { .jump-btn {
background: var(--primary-color); background: var(--primary-color);
border-radius: 2px;
width: 90%; width: 90%;
height: 40px; border-radius: 0.08rem;
line-height: 40px; padding: 0.25rem 0;
color: #fff; color: #fff;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 16px; font-size: 0.25rem;
font-weight: 500; font-weight: 500;
margin: 0 auto; margin: 0 auto;
border: none;
} }
</style> </style>

View File

@ -108,18 +108,17 @@ watchEffect(() => {
.jump-btn { .jump-btn {
background: var(--primary-color); background: var(--primary-color);
border-radius: 2px;
width: 90%; width: 90%;
height: 40px; border-radius: 0.08rem;
line-height: 40px; padding: 0.2rem 0;
color: #fff; color: #fff;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 16px; font-size: 0.3rem;
font-weight: 500; font-weight: 500;
margin: 32px auto 0; margin: 0.5rem auto 0;
cursor: pointer; border: none;
} }
} }
</style> </style>