|
@@ -35,8 +35,11 @@
|
|
|
</div>
|
|
|
</header>
|
|
|
<footer v-if="props.showAdjust">
|
|
|
- <h4>{{ $t('header.adhustText1') }}</h4>
|
|
|
- <div>{{ $t('header.adhustText2') }}</div>
|
|
|
+ <div>
|
|
|
+ <h4>{{ $t('header.adjustText1') }}</h4>
|
|
|
+ <div>{{ $t('header.adjustText2') }}</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="points">
|
|
|
<button @click="onSetP1" :class="{ active: points.p1 }">{{ points.p1 ? `${t('header.reset')}P1` : `${t('header.setting')}P1` }}</button>
|
|
|
<button @click="onSetP2" :class="{ active: points.p2 }">{{ points.p2 ? `${t('header.reset')}P2` : `${t('header.setting')}P2` }}</button>
|
|
@@ -247,12 +250,15 @@ footer {
|
|
|
left: 0;
|
|
|
bottom: 0;
|
|
|
width: 100%;
|
|
|
- height: 92px;
|
|
|
+ min-height: 92px;
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
backdrop-filter: blur(4px);
|
|
|
background: rgba(27, 27, 28, 0.8);
|
|
|
z-index: 99999;
|
|
|
padding: 20px 24px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
h4 {
|
|
|
font-size: 20px;
|
|
|
margin: 0;
|
|
@@ -261,12 +267,13 @@ footer {
|
|
|
margin-bottom: 14px;
|
|
|
}
|
|
|
.points {
|
|
|
- position: absolute;
|
|
|
- top: 20px;
|
|
|
- right: 0;
|
|
|
- bottom: 20px;
|
|
|
+ // position: absolute;
|
|
|
+ // top: 20px;
|
|
|
+ // right: 0;
|
|
|
+ // bottom: 20px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+ margin-left: 10px;
|
|
|
button {
|
|
|
cursor: pointer;
|
|
|
outline: none;
|