File tree Expand file tree Collapse file tree 4 files changed +30
-16
lines changed Expand file tree Collapse file tree 4 files changed +30
-16
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<v-card class =" ContentCard" >
3
- <v-card-actions >
3
+ <v-card-actions class = " ContentCard-Actions " >
4
4
<subject-tag
5
5
v-for =" (item, idx) in subjects"
6
6
:key =" idx"
10
10
:icon-color =" item.iconColor || 'white'"
11
11
:background-color =" item.backgroundColor || '#A5D8FF'"
12
12
/>
13
+ <subject-tag
14
+ class =" ContentCard-SubjectTag"
15
+ :name =" '動画'"
16
+ :icon =" 'mdi-video'"
17
+ :icon-color =" '#424242'"
18
+ :background-color =" '#E0E0E0'"
19
+ />
13
20
</v-card-actions >
14
21
<v-card-title >
15
22
<h2 class =" ContentCard-Title" >{{ title }}</h2 >
16
23
</v-card-title >
17
- <v-card-text class =" ContentCard-Description" >{{ description }}</v-card-text >
24
+ <v-card-text >
25
+ <p class =" ContentCard-Description" >{{ description }}</p >
26
+ </v-card-text >
18
27
</v-card >
19
28
</template >
20
29
@@ -45,16 +54,21 @@ export default Vue.extend({
45
54
.ContentCard {
46
55
color : $color-gray ;
47
56
border-radius : 14px !important ;
57
+ .ContentCard-Actions {
58
+ padding : 16px 16px 0 ;
59
+ }
48
60
.ContentCard-SubjectTag {
49
61
margin-right : 4px ;
50
62
}
51
63
.ContentCard-Title {
52
64
font-weight : bold ;
53
65
font-size : 14px ;
66
+ line-height : 1.75 ;
54
67
}
55
68
.ContentCard-Description {
56
- white-space : pre-wrap ;
57
69
font-size : 12px ;
70
+ color : $color-gray ;
71
+ margin : 0 ;
58
72
}
59
73
}
60
74
</style >
Original file line number Diff line number Diff line change @@ -52,34 +52,36 @@ export default Vue.extend({
52
52
<style scoped lang="scss">
53
53
.PeriodCard {
54
54
display : flex ;
55
+ border-bottom : 1px solid $color-base-color-02 ;
55
56
56
- & -NumberBlock {
57
+ .PeriodCard -NumberBlock {
57
58
display : flex ;
58
59
flex-direction : column ;
59
60
margin : 12px ;
60
61
}
61
62
62
- & -Number {
63
+ .PeriodCard -Number {
63
64
display : flex ;
64
65
flex-direction : column ;
65
66
align-items : center ;
66
67
color : $color-white ;
67
68
background-color : $color-base-color-06 ;
68
- max- width : 40px ;
69
+ width : 40px ;
69
70
border-radius : 3em ;
70
71
padding : 12px 4px ;
71
72
margin-bottom : 8px ;
72
73
73
- & -Num {
74
+ .PeriodCard-Number -Num {
74
75
font-size : 22px ;
75
76
}
76
77
77
- & -Text {
78
+ .PeriodCard-Number -Text {
78
79
font-size : 8px ;
80
+ font-weight : bold ;
79
81
}
80
82
}
81
83
82
- & -Time {
84
+ .PeriodCard -Time {
83
85
display : flex ;
84
86
flex-direction : column ;
85
87
justify-content : center ;
Original file line number Diff line number Diff line change 8
8
<v-app-bar fixed app class =" bar" elevation =" 0" >
9
9
<HeaderLogo />
10
10
<v-spacer />
11
- <v-btn outlined rounded color =" #0071C2" >
12
- ログアウト
13
- <v-icon right >mdi-exit-to-app</v-icon >
11
+ <v-btn fab small outlined rounded color =" #0071C2" >
12
+ <v-icon >mdi-clipboard-account</v-icon >
14
13
</v-btn >
15
14
<template v-slot :extension >
16
15
<div class =" header-calender" >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" MainPage" >
3
- <period-card
4
- v-if =" classData.getLessonsByDisplayDate.length"
5
- :class-data =" classData"
6
- />
3
+ <div v-if =" classData.getLessonsByDisplayDate.length" >
4
+ <period-card :class-data =" classData" />
5
+ </div >
7
6
<v-row v-else-if =" today" class =" DataBlock" >
8
7
<h1 style =" color : white ; width : 100vw ; text-align : center ;" >
9
8
今日の時間割はまだ届いていないみたいです
You can’t perform that action at this time.
0 commit comments