Skip to content

Commit 4581582

Browse files
committed
fix landing page
1 parent 14976ee commit 4581582

1 file changed

Lines changed: 17 additions & 8 deletions

File tree

web/pages/index.vue

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
<template>
22
<div>
33
<v-app-bar elevation="4">
4-
<h2 class="text--primary text-h4">
5-
<v-icon large>mdi-forum</v-icon>
4+
<h2
5+
class="text--primary"
6+
:class="{
7+
'text-h4': $vuetify.breakpoint.lgAndUp,
8+
'text-h5': $vuetify.breakpoint.mdAndDown,
9+
}"
10+
>
11+
<v-icon :large="$vuetify.breakpoint.mdAndDown">mdi-forum</v-icon>
612
Http SMS
713
</h2>
814
<v-spacer></v-spacer>
9-
<v-btn exact-path class="primary" large :to="{ name: 'login' }">
15+
<v-btn
16+
exact-path
17+
class="primary"
18+
:large="$vuetify.breakpoint.lgAndUp"
19+
:to="{ name: 'login' }"
20+
>
1021
Get Started
1122
<span v-if="$vuetify.breakpoint.lgAndUp">&nbsp;For Free</span>
1223
</v-btn>
@@ -54,16 +65,14 @@
5465
class="mt-4"
5566
:class="{ 'text-center': $vuetify.breakpoint.mdAndDown }"
5667
>
57-
<v-icon color="secondary darken-2">mdi-check-circle</v-icon>
68+
<v-icon color="teal darken-2">mdi-check-circle</v-icon>
5869
Free to use
59-
<v-icon class="ml-4" color="secondary darken-2"
60-
>mdi-check-circle</v-icon
61-
>
70+
<v-icon class="ml-4" color="teal darken-2">mdi-check-circle</v-icon>
6271
100% Open Source
6372
</div>
6473
<v-divider
6574
v-if="$vuetify.breakpoint.mdAndDown"
66-
class="mt-6 mr-16 secondary"
75+
class="mt-6 mr-16 teal"
6776
:class="{ 'ml-16': $vuetify.breakpoint.mdAndDown }"
6877
></v-divider>
6978
</v-col>

0 commit comments

Comments
 (0)