Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{{ power }}
</div>
</div>
<div v-if="showSettings" class="row q-mt-md text-subtitle2">
<div v-if="showSettings" class="row q-mt-md justify-between text-subtitle2">
<div>Laden mit Überschuss:</div>
<div class="q-ml-sm row items-center">
<q-icon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@
</div>
</div>

<div class="row items-center justify-between q-ma-none q-pa-none no-wrap">
<div class="row items-center justify-between q-ma-none q-pa-none no-wrap q-mt-md">
<div class="text-subtitle2 q-mr-sm">Einspeisegrenze beachten</div>
<div>
<ToggleStandard v-model="feedInLimit.value" />
<ToggleStandard dense v-model="feedInLimit.value" />
</div>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@
</div>
</q-card-section>
<q-card-section class="q-py-none">
<div class="row items-center no-wrap">
<div class="col text-subtitle2">Ladepunkt sperren</div>
<div class="col">
<ChargePointLock :charge-point-id="props.chargePointId" dense />
</div>
<div class="row items-center justify-between">
<div class="text-subtitle2">Ladepunkt sperren</div>
<ChargePointLock :charge-point-id="props.chargePointId" dense />
</div>
<q-separator class="q-mt-sm" />
<div class="row items-center q-mt-sm">
Expand All @@ -28,17 +26,13 @@
:readonly="false"
/>
</div>
<div class="row items-center no-wrap q-mt-sm">
<div class="col row items-center">
<div class="col text-subtitle2">Priorität</div>
<div class="col">
<ChargePointPriority
:charge-point-id="props.chargePointId"
:readonly="false"
dense
/>
</div>
</div>
<div class="row items-center justify-between q-mt-sm">
<div class="text-subtitle2">Priorität</div>
<ChargePointPriority
:charge-point-id="props.chargePointId"
:readonly="false"
dense
/>
</div>
<q-separator class="q-mt-sm" />
<div class="row items-center no-wrap">
Expand Down