Skip to content

Commit

Permalink
uiの配置をなんかいい感じに。「あ」も消しました
Browse files Browse the repository at this point in the history
  • Loading branch information
ynta-3 committed Jun 16, 2024
1 parent 46e5730 commit 974afaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
19 changes: 5 additions & 14 deletions h24s_25/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function generateBall() {
<template>
<div class="container">
<div class="title left">
<h1>Welcome</h1>
<h1>円算機</h1>
</div>
<div class="gamespace left">
<div class="">
Expand All @@ -56,11 +56,11 @@ function generateBall() {
<button id="load-button" @click="load()">Load</button>
</div>
<div>
savedata:
<span style="margin: 20px;">savedata:</span>
<input type="text" v-model="savedata" placeholder="セーブデータ名">
</div>
<div>
<input type="text" v-model="ballId" placeholder="玉のidを入力してください">
<div style="margin: 20px">
<input style="width: 12.5em;" type="text" v-model="ballId" placeholder="玉のidを入力してください">
<select name="ballType" id="ballTypeSelector" v-model="ballType">
<option value="0">出力</option>
<!-- <option value="1">入力</option>-->
Expand All @@ -70,16 +70,7 @@ function generateBall() {
</select>
<button @click="generateBall()">玉を追加</button>
</div>
<div class="log-container">
<p style="position: relative; left: 20px;">Log id:value</p>
<div class="log-box">
<p>id1 : value1</p>
<p>id2 : value2</p>
<p>id3 : value3</p>
<p>id4 : value4</p>
</div>
</div>
<div>
<div style="margin: 20px;">
<BallConfig></BallConfig>
</div>
<!-- <div class="slider-container">-->
Expand Down
2 changes: 1 addition & 1 deletion h24s_25/src/components/BallConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
数値: <input type="number" v-model="value" @change="ballData.data.set('value',value);Screen.getInstance().edit()">
</div>
</div>
<div v-if="ballData === undefined"></div>
<div v-if="ballData === undefined"></div>
</template>

<style scoped>
Expand Down

0 comments on commit 974afaf

Please sign in to comment.