6
6
7
7
<template >
8
8
<!-- Student Resources -->
9
- <div id =" student-resouces " class =" content" >
9
+ <div id =" resources " class =" content" >
10
10
<v-container class =" resource--styles" >
11
11
<HeaderTitle title =" STUDENT RESOURCES" />
12
12
13
13
<v-row no-gutters justify =" space-between" >
14
14
<v-col xs =" 12" sm =" 7" >
15
15
<a target =" _blank" :href =" resources.big_box_1.link" >
16
- <div data-cy =" resources-box" class =" box big" >
17
- <h2 >{{resources.big_box_1.title}}</h2 >
18
- <h3 >{{resources.big_box_1.description}}</h3 >
19
- <v-img data-cy =" resources-img" :src =" resources.big_box_1.src" contain class =" image" />
20
- </div >
16
+ <div data-cy =" resources-box" class =" box big" >
17
+ <h2 >{{ resources.big_box_1.title }}</h2 >
18
+ <h3 >{{ resources.big_box_1.description }}</h3 >
19
+ <v-img data-cy =" resources-img" :src =" resources.big_box_1.src" contain class =" image" />
20
+ </div >
21
21
</a >
22
22
</v-col >
23
23
<v-col xs =" 12" sm =" 4" >
24
24
<a target =" _blank" :href =" resources.small_box_1.link" >
25
- <div data-cy =" resources-box" class =" box small rounded-lg hidden-xs-only" >
26
- <h2 >{{resources.small_box_1.title}}</h2 >
27
- <v-img data-cy =" resources-img" :src =" resources.small_box_1.src" contain class =" image" />
28
- </div >
25
+ <div data-cy =" resources-box" class =" box small rounded-lg hidden-xs-only" >
26
+ <h2 >{{ resources.small_box_1.title }}</h2 >
27
+ <v-img data-cy =" resources-img" :src =" resources.small_box_1.src" contain class =" image" />
28
+ </div >
29
29
</a >
30
30
</v-col >
31
31
<v-col xs =" 12" sm =" 4" >
32
32
<a target =" _blank" :href =" resources.small_box_2.link" >
33
- <div data-cy =" resources-box" class =" box small rounded-lg hidden-xs-only" >
34
- <h2 >{{resources.small_box_2.title}}</h2 >
35
- <v-img data-cy =" resources-img" :src =" resources.small_box_2.src" class =" image" />
36
- </div >
33
+ <div data-cy =" resources-box" class =" box small rounded-lg hidden-xs-only" >
34
+ <h2 >{{ resources.small_box_2.title }}</h2 >
35
+ <v-img data-cy =" resources-img" :src =" resources.small_box_2.src" class =" image" />
36
+ </div >
37
37
</a >
38
38
</v-col >
39
39
<v-col xs =" 12" sm =" 7" >
40
40
<a target =" _blank" :href =" resources.small_box_2.link" >
41
- <div data-cy =" resources-box" class =" box big rounded-lg" >
42
- <h2 >{{resources.big_box_2.title}}</h2 >
43
- <h3 >{{resources.big_box_2.description}}</h3 >
44
- <v-img data-cy =" resources-img" :src =" resources.big_box_2.src" class =" image" />
45
- </div >
41
+ <div data-cy =" resources-box" class =" box big rounded-lg" >
42
+ <h2 >{{ resources.big_box_2.title }}</h2 >
43
+ <h3 >{{ resources.big_box_2.description }}</h3 >
44
+ <v-img data-cy =" resources-img" :src =" resources.big_box_2.src" class =" image" />
45
+ </div >
46
46
</a >
47
47
</v-col >
48
48
</v-row >
@@ -55,15 +55,15 @@ import HeaderTitle from '@/components/HeaderTitle';
55
55
56
56
export default {
57
57
components: {
58
- HeaderTitle,
58
+ HeaderTitle
59
59
},
60
60
data : () => ({
61
61
resources: {
62
62
big_box_1: {
63
63
link: ' https://jobsboard.csesoc.unsw.edu.au/login' ,
64
64
title: ' Job Board' ,
65
65
description: ' A place where CSESoc students can look for relevant job opportunities.' ,
66
- src: require (' ../../assets/resource-job-board.png' ),
66
+ src: require (' ../../assets/resource-job-board.png' )
67
67
},
68
68
small_box_1: {
69
69
link: ' https://media.csesoc.org.au/first-year-guide/' ,
@@ -73,15 +73,15 @@ export default {
73
73
small_box_2: {
74
74
link: ' https://media.csesoc.org.au/' ,
75
75
title: ' CSESOC Media' ,
76
- src: require (' ../../assets/resource-media.png' ),
76
+ src: require (' ../../assets/resource-media.png' )
77
77
},
78
78
big_box_2: {
79
79
link: ' https://notangles.csesoc.unsw.edu.au/' ,
80
80
title: ' Notangles' ,
81
81
description: ' Trimester timetabling tool - no more timetable tangles!' ,
82
- src: require (' ../../assets/resource-notangles.png' ),
82
+ src: require (' ../../assets/resource-notangles.png' )
83
83
}
84
- },
84
+ }
85
85
})
86
86
};
87
87
</script >
@@ -109,10 +109,10 @@ export default {
109
109
height : 100% ;
110
110
overflow : hidden ;
111
111
112
- & .big {
112
+ & .big {
113
113
@include linearGradient ($primary-color , $secondary-color-2 );
114
114
}
115
- & .small {
115
+ & .small {
116
116
@include linearGradient ($primary-color , $secondary-color-1 );
117
117
}
118
118
@@ -132,7 +132,7 @@ export default {
132
132
.image {
133
133
border-bottom-left-radius : 10px ;
134
134
border-bottom-right-radius : 10px ;
135
- transition : transform .2s ;
135
+ transition : transform 0 .2s ;
136
136
}
137
137
}
138
138
0 commit comments