Skip to content

Commit

Permalink
App doenst build anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
mvaneijgen committed Feb 1, 2021
1 parent 27b0804 commit 5a20d75
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 18 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "screenshots-electron-app",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 0 additions & 2 deletions src/components/Devices/Devices.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,9 @@ export default {
@import "@/assets/scss/_variables.scss";
#component-Devices {
h2 {
// text-transform: lowercase;
color: $brand-three;
padding-left: $base-margin;
margin: 0;
// font-weight: normal;
font-size: 110px;
margin-bottom: -0.7em;
pointer-events: none;
Expand Down
10 changes: 7 additions & 3 deletions src/components/Start/SidebarResult.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ export default {
// getSelectedDevices() {
// return this.$store.getters["getSelectedDevices"];
// },
getAdvanced() {
return this.$store.getters.getState("advanced");
getAdvanced: {
get() {
return this.$store.getters.getState("advanced");
},
set(val) {
return val;
},
},
getLoading() {
return this.$store.getters["getLoading"];
Expand Down Expand Up @@ -97,5 +102,4 @@ export default {
.description {
margin-bottom: $base-margin * 2;
}
/* Item in view leave to this postion */
</style>
2 changes: 1 addition & 1 deletion src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export default new Vuex.Store({
loading: false,
path: '',
pathChrome: '',
customCSS: '* {background: yellow; }',
customCSS: '',
generating: false,
amount: 100,
quality: 60,
Expand Down
12 changes: 1 addition & 11 deletions src/views/Start.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export default {
this.$store.commit("SET_SITEMAP", [
"https://decodedbags.com/pages/about",
]);
this.$store.commit("SET_CUSTOM_CSS", ["* {background: yellow; }"]);
}
//------------------------------------------------------//
// ⌘ macOS
Expand Down Expand Up @@ -119,10 +120,6 @@ body {
font-size: 22px;
}
}
@include media-breakpoint-up(md) {
body {
}
}
.alloy-cards {
font-size: 16px;
@include media-breakpoint-up(lg) {
Expand Down Expand Up @@ -172,10 +169,6 @@ h2 {
}
h3 {
font-size: 22px;
// @include media-breakpoint-up(lg) {
// font-size: 30px;
// }
}
h4 {
font-size: 20px;
Expand Down Expand Up @@ -298,7 +291,6 @@ button,
padding: 0;
display: inline;
font-size: inherit;
// font-size: 16px;
color: inherit;
width: auto;
font-weight: 400;
Expand Down Expand Up @@ -334,7 +326,6 @@ button,
color: $brand-three;
}
.content {
// margin-top: 40px;
width: 100%;
}
$offset: 400px;
Expand All @@ -353,7 +344,6 @@ aside {
height: 100%;
}
main {
// #component-Devices {
@include media-breakpoint-up(lg) {
margin-left: $offset;
}
Expand Down

0 comments on commit 5a20d75

Please sign in to comment.