没啥变化
This commit is contained in:
parent
cec8718629
commit
a26d2f7d66
@ -19,7 +19,7 @@
|
||||
</div>
|
||||
<!-- 滑动键盘区域 -->
|
||||
<!-- 第一行 -->
|
||||
<div class="keyboard-row-scroll" scroll-x="true">
|
||||
<div class="keyboard-row-scroll">
|
||||
<div class="keyboard-row" for="{{row1Letters}}">
|
||||
<input
|
||||
type="button"
|
||||
@ -32,25 +32,27 @@
|
||||
</div>
|
||||
|
||||
<!-- 第二行 -->
|
||||
<div class="keyboard-row-scroll" scroll-x="true">
|
||||
<div class="keyboard-row-scroll">
|
||||
<div class="keyboard-row" for="{{row2Letters}}">
|
||||
<input
|
||||
type="button"
|
||||
class="input-button"
|
||||
value="{{$item}}"
|
||||
onclick="input($item)"
|
||||
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 第三行 -->
|
||||
<div class="keyboard-row-scroll" scroll-x="true">
|
||||
<div class="keyboard-row-scroll">
|
||||
<div class="keyboard-row" for="{{row3Letters}}">
|
||||
<input
|
||||
type="button"
|
||||
class="input-button"
|
||||
value="{{$item}}"
|
||||
onclick="input($item)"
|
||||
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -262,9 +264,21 @@ export default {
|
||||
margin: 5px 0;
|
||||
}
|
||||
.keyboard-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
width: 466px; /* 固定总宽度 */
|
||||
height: 60px;
|
||||
}
|
||||
.input-button {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
margin: 0 3px;
|
||||
font-size: 24px;
|
||||
border-radius: 5px;
|
||||
background-color: #444;
|
||||
color: white;
|
||||
}
|
||||
.text-container {
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
@ -292,16 +306,7 @@ export default {
|
||||
}
|
||||
|
||||
|
||||
.input-button {
|
||||
width: 70px;
|
||||
height: 60px;
|
||||
min-width: 60px;
|
||||
margin: 0 3px;
|
||||
font-size: 24px;
|
||||
border-radius: 5px;
|
||||
background-color: #444;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.function-row {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user