webapp: fix inverter "add" and "save order" button positions

the source tells us that the buttons are supposed to be on the right of
tha card, but the CSS broke at some point.
This commit is contained in:
Bernhard Kirchen 2024-10-26 21:46:15 +02:00 committed by Bernhard Kirchen
parent 0a5bd65bd2
commit b6c0a850c9

View File

@ -20,8 +20,8 @@
required required
/> />
</div> </div>
<div class="ml-auto text-right"> <div class="d-flex my-3">
<button type="submit" class="btn btn-primary my-2"> <button type="submit" class="btn btn-primary ms-auto">
{{ $t('inverteradmin.Add') }} {{ $t('inverteradmin.Add') }}
</button> </button>
</div> </div>
@ -81,8 +81,8 @@
</tbody> </tbody>
</table> </table>
</div> </div>
<div class="ml-auto text-right"> <div class="d-flex mt-1 mb-3">
<button class="btn btn-primary my-2" @click="onSaveOrder()"> <button class="btn btn-primary ms-auto" @click="onSaveOrder()">
{{ $t('inverteradmin.SaveOrder') }} {{ $t('inverteradmin.SaveOrder') }}
</button> </button>
</div> </div>