Skip to content

Commit 4dfa86e

Browse files
authored
Merge pull request #3 from virtuagora/0.2.0
Ready for 0.2.0
2 parents 1a0be3a + 991dda0 commit 4dfa86e

40 files changed

+2322
-240
lines changed

package-lock.json

Lines changed: 97 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,22 @@
99
},
1010
"dependencies": {
1111
"animate.css": "^3.7.1",
12-
"axios": "^0.18.0",
12+
"axios": "^0.18.1",
1313
"buefy": "^0.7.6",
1414
"bulma": "^0.7.5",
15-
"lodash": "^4.17.11",
15+
"lodash": "^4.17.15",
1616
"mapbox-gl": "^1.0.0",
1717
"vee-validate": "^2.2.8",
1818
"vue": "^2.6.9",
1919
"vue-analytics": "^5.16.4",
2020
"vue-carousel": "^0.17.0",
2121
"vue-i18n": "^8.9.0",
22+
"vue-infinite-loading": "^2.4.4",
2223
"vue-mapbox": "^0.4.1",
2324
"vue-particles": "^1.0.9",
2425
"vue-recaptcha": "^1.1.1",
2526
"vue-router": "^3.0.1",
27+
"vue-slideout": "^1.8.0",
2628
"vuex": "^3.0.1",
2729
"vuex-persist": "^2.0.1"
2830
},

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div id="app">
2+
<div id="app" ref="app">
33
<Navbar v-if="!$route.meta.hideNavbar"/>
44
<RouterView />
55
<b-loading ref="loader" :active="isLoading"></b-loading>

src/assets/sass/_form.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,18 @@
4545
border-color: $primary
4646
}
4747
}
48+
.control textarea.textarea{
49+
background-color: #f5f5f5;
50+
border-bottom: 1px solid #6e6e6e;
51+
border-left: 5px solid #6e6e6e;
52+
border-top-right-radius: 3px;
53+
color: #000;
54+
&::placeholder {
55+
color: #000;
56+
opacity: 0.3;
57+
}
58+
&:focus{
59+
border-color: $primary
60+
}
61+
}
4862
}

src/assets/sass/_global.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,8 @@ img.is-centered {
6767

6868
.add-br{
6969
white-space: pre-wrap;
70-
}
70+
}
71+
72+
.modal-card {
73+
color: #000;
74+
}

src/assets/sass/_variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ $primary: #da8313;
2222
$primary-invert: findColorInvert($primary);
2323
$dark: #181d27;
2424
$dark-invert: findColorInvert($dark);
25+
$success: #13ae4a;
2526
$text: $white;
2627
$danger: rgb(243, 62, 62);
2728
// $twitter: #4099FF;

0 commit comments

Comments
 (0)