Various mobile overflow fixes

This commit is contained in:
Johannes Zellner
2025-03-26 16:04:58 +01:00
parent 785db03650
commit 67728851a3
20 changed files with 167 additions and 64 deletions
+6 -5
View File
@@ -3,6 +3,7 @@
import { ref, onMounted, watch } from 'vue';
import { Switch } from 'pankow';
import Section from '../components/Section.vue';
import SettingsItem from '../components/SettingsItem.vue';
import Ipv4Config from '../components/Ipv4Config.vue';
import Ipv6Config from '../components/Ipv6Config.vue';
import Firewall from '../components/Firewall.vue';
@@ -33,11 +34,11 @@ onMounted(async () => {
<Ipv6Config />
<Firewall />
<Section :title="$t('network.dyndns.title')">
<p>{{ $t('network.dyndns.description') }}</p>
<!-- TODO<p class="text-danger" ng-show="dyndnsConfigure.error"><br/>{{ dyndnsConfigure.error }}</p> -->
<Switch v-model="dynDnsIsEnabled" :label="$t(dynDnsIsEnabled ? 'main.statusEnabled' : 'main.statusDisabled')" />
<Section :title="$t('network.dyndns.title')" :padding="false">
<SettingsItem>
<p>{{ $t('network.dyndns.description') }}</p>
<Switch v-model="dynDnsIsEnabled"/>
</SettingsItem>
</Section>
</div>
</template>