Skip to content

Commit f1695dd

Browse files
committed
classでの記述に変更
1 parent 72fcb15 commit f1695dd

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

src/pages/index.vue

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
<template>
22
<v-layout justify-center="true" align-center="true">
3-
<v-flex style="max-width: 630px !important;">
3+
<v-flex class="indexFlex">
44
<v-row justify="center" class="mb-3">
55
<v-icon color="white" size="60px">mdi-library</v-icon>
66
</v-row>
77
<v-row justify="center">
88
<span class="description mb-3">授業をうける生徒・児童の方</span>
99
</v-row>
10-
<v-row
11-
justify="center"
12-
style="margin-left: auto !important; margin-right: auto !important;"
13-
>
10+
<v-row class="loginFieldRow" justify="center">
1411
<input-field
1512
v-model="classId"
1613
class="classIdField"
@@ -40,43 +37,25 @@
4037
<v-btn
4138
color="#FFDB6C"
4239
height="60px"
43-
style="font-size: 16px; font-weight: bold;"
40+
class="registerButton"
4441
block
4542
rounded
4643
>
4744
ユーザー登録する
4845
</v-btn>
4946

50-
<v-btn
51-
color="white"
52-
height="50px"
53-
style="font-size: 16px; font-weight: bold; margin-top: 10px;"
54-
block
55-
rounded
56-
>
47+
<v-btn block class="loginButton" color="white" height="50px" rounded>
5748
ログインする
5849
</v-btn>
59-
<v-footer padless color="#004170" style="margin-top: 15px;">
50+
<v-footer color="#004170" padless>
6051
<v-row justify="center" no-gutters>
61-
<v-col
62-
class="white--text text-center md-16"
63-
cols="12"
64-
style="margin-top: 15px; font-size: 12px;"
65-
>
52+
<v-col class="white--text text-center footerText" cols="12">
6653
<a class="white--text"> - おうちで時間割について </a>
6754
</v-col>
68-
<v-col
69-
class="white--text text-center"
70-
cols="12"
71-
style="margin-top: 15px; font-size: 12px;"
72-
>
55+
<v-col class="white--text text-center footerText" cols="12">
7356
<a class="white--text"> - お問い合わせ </a>
7457
</v-col>
75-
<v-col
76-
class="white--text text-center"
77-
cols="12"
78-
style="margin-top: 15px; font-size: 12px;"
79-
>
58+
<v-col class="white--text text-center footerText" cols="12">
8059
<a class="white--text"> - サイトポリシー </a>
8160
</v-col>
8261
</v-row>
@@ -147,4 +126,25 @@ export default Vue.extend({
147126
padding-top: 4px;
148127
padding-bottom: 24px;
149128
}
129+
.indexFlex {
130+
max-width: 640px !important;
131+
}
132+
.loginFieldRow {
133+
margin-left: auto !important;
134+
margin-right: auto !important;
135+
}
136+
.loginButton {
137+
font-size: 16px;
138+
font-weight: bold;
139+
margin-top: 10px;
140+
margin-bottom: 15px;
141+
}
142+
.registerButton {
143+
font-size: 16px;
144+
font-weight: bold;
145+
}
146+
.footerText {
147+
margin-top: 15px;
148+
font-size: 12px;
149+
}
150150
</style>

0 commit comments

Comments
 (0)