Fix: 修改部分样式

This commit is contained in:
2025-07-09 14:43:51 +08:00
parent 1b9de2ad38
commit 87e663469f
2 changed files with 6 additions and 4 deletions

View File

@ -1,11 +1,11 @@
<template> <template>
<div class="calculator-container"> <div class="calculator-container">
<v-row> <v-row justify="center">
<!-- 参数输入区域 --> <!-- 参数输入区域 -->
<v-col <v-col
cols="12" cols="12"
lg="6" lg="5"
md="6" md="5"
> >
<v-card <v-card
class="pa-6 parameter-card" class="pa-6 parameter-card"

View File

@ -51,16 +51,18 @@ html, body {
} }
.calculator-container { .calculator-container {
max-width: 1400px; /* max-width: 1400px; */
margin: 0 16px 16px 16px; margin: 0 16px 16px 16px;
} }
.parameter-card { .parameter-card {
max-width: 800px;
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
} }
.result-card { .result-card {
max-width: 800px;
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
} }