Skip to content

Commit b0e54e3

Browse files
committed
Fix the display on mobile
1 parent c262bfa commit b0e54e3

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

web/pages/index.vue

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,12 @@ Console.WriteLine(await response.Content.ReadAsStringAsync());
697697
</v-row>
698698
<v-row>
699699
<v-col>
700-
<v-alert type="info" :icon="mdiLightbulbOn60" prominent text>
700+
<v-alert
701+
color="info"
702+
:icon="$vuetify.breakpoint.mdAndUp ? mdiLightbulbOn60 : undefined"
703+
:prominent="$vuetify.breakpoint.mdAndUp"
704+
text
705+
>
701706
Feel free to <a href="mailto:arnold@httpsms.com">contact us</a> if
702707
you need a bigger plan, or if you want us to install the httpSMS
703708
API on your dedicated server. If would still like to support us,
@@ -726,7 +731,7 @@ Console.WriteLine(await response.Content.ReadAsStringAsync());
726731
<v-col>
727732
<v-expansion-panels focusable>
728733
<v-expansion-panel>
729-
<v-expansion-panel-header>
734+
<v-expansion-panel-header class="text-h6">
730735
Can I install the app on my Iphone?
731736
</v-expansion-panel-header>
732737
<v-expansion-panel-content>
@@ -738,7 +743,7 @@ Console.WriteLine(await response.Content.ReadAsStringAsync());
738743
</v-expansion-panel-content>
739744
</v-expansion-panel>
740745
<v-expansion-panel>
741-
<v-expansion-panel-header>
746+
<v-expansion-panel-header class="text-h6">
742747
What's the minimum supported Android version?
743748
</v-expansion-panel-header>
744749
<v-expansion-panel-content>
@@ -750,7 +755,7 @@ Console.WriteLine(await response.Content.ReadAsStringAsync());
750755
</v-expansion-panel-content>
751756
</v-expansion-panel>
752757
<v-expansion-panel>
753-
<v-expansion-panel-header>
758+
<v-expansion-panel-header class="text-h6">
754759
Can I send unlimited number of messages per month?
755760
</v-expansion-panel-header>
756761
<v-expansion-panel-content>

0 commit comments

Comments
 (0)