Skip to content

Commit 348875b

Browse files
committed
Fix: 設定ダイヤログの幅を狭めた時のスタイルを調整
1 parent 66c419b commit 348875b

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/components/Dialog/SettingDialog/BaseCell.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<QCardActions class="q-px-md bg-surface-darken" :class="props.class">
2+
<QCardActions class="no-wrap q-px-md bg-surface-darken" :class="props.class">
33
<div>
44
<div>{{ title }}</div>
55
<div :aria-label="description">

src/components/Dialog/SettingDialog/ButtonToggleCell.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<template>
44
<BaseCell :title :description>
55
<QBtnToggle
6+
style="margin-left: 8px; flex-shrink: 0"
67
padding="xs md"
78
unelevated
89
color="background"

src/components/Dialog/SettingDialog/SettingDialog.vue

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
対応する GPU が搭載されていないため、GPU モードは利用できません。
6262
</QTooltip>
6363
</ButtonToggleCell>
64-
<QCardActions class="q-px-md bg-surface-darken">
64+
<QCardActions class="no-wrap q-px-md bg-surface-darken">
6565
<div>
6666
<div>音声のサンプリングレート</div>
6767
<div class="text-caption">
@@ -71,6 +71,7 @@
7171
<QSpace />
7272
<QSelect
7373
v-model="outputSamplingRate"
74+
style="flex-shrink: 0"
7475
borderless
7576
dense
7677
name="samplingRate"
@@ -173,7 +174,7 @@
173174
:modelValue="enableRubyNotation"
174175
@update:modelValue="changeEnableRubyNotation"
175176
/>
176-
<QCardActions class="q-px-md bg-surface-darken">
177+
<QCardActions class="no-wrap q-px-md bg-surface-darken">
177178
<div>
178179
<div>非表示にしたヒントを全て再表示</div>
179180
<div class="text-caption">
@@ -212,7 +213,7 @@
212213
<QCardActions>
213214
<h5 class="text-h5">保存</h5>
214215
</QCardActions>
215-
<QCardActions class="q-px-md bg-surface-darken">
216+
<QCardActions class="no-wrap q-px-md bg-surface-darken">
216217
<div>
217218
<div>書き出し先を固定</div>
218219
<div class="text-caption">
@@ -283,7 +284,7 @@
283284
"
284285
/>
285286

286-
<QCardActions class="q-px-md bg-surface-darken">
287+
<QCardActions class="no-wrap q-px-md bg-surface-darken">
287288
<div>
288289
<div>書き出しファイル名パターン</div>
289290
<div class="text-caption">
@@ -396,7 +397,7 @@
396397
"
397398
/>
398399
<QCardActions
399-
class="q-px-md bg-surface-darken"
400+
class="no-wrap q-px-md bg-surface-darken"
400401
:class="{ disabled: !canSetAudioOutputDevice }"
401402
>
402403
<div>

0 commit comments

Comments
 (0)