diff --git a/client/src/store/index.js b/client/src/store/index.js index 7fa4c047..3a1cc082 100644 --- a/client/src/store/index.js +++ b/client/src/store/index.js @@ -4,7 +4,7 @@ import axios from 'axios'; Vue.use(Vuex); -const currentLanguagesCount = 7; +const currentLanguagesCount = 8; const state = { dailyData: { diff --git a/client/src/style/base.scss b/client/src/style/base.scss index 9d197a66..ae288f58 100644 --- a/client/src/style/base.scss +++ b/client/src/style/base.scss @@ -27,6 +27,7 @@ body { .mb1 { margin-bottom: $spacing-xs; } .mt1 { margin-top: $spacing-xs; } +.my1 { margin-top: $spacing-xs; margin-bottom: $spacing-xs; } .mb3 { margin-bottom: $spacing; } diff --git a/client/src/style/options.scss b/client/src/style/options.scss index a545e2c8..8b0975c3 100644 --- a/client/src/style/options.scss +++ b/client/src/style/options.scss @@ -2,7 +2,7 @@ position: absolute; top: 70px; right: 20px; - width: 9%; + width: 11%; background: rgba(0, 0, 0, 0.4); border-radius: 10px; padding: $spacing-s; @@ -67,7 +67,6 @@ font-size: $fs-m; width: 100%; border-radius: 5px; - margin-top: $spacing-s; transition: all 0.8s; } diff --git a/client/src/views/Options.vue b/client/src/views/Options.vue index 7aecc6fc..a7aacb64 100644 --- a/client/src/views/Options.vue +++ b/client/src/views/Options.vue @@ -16,12 +16,12 @@ div @click="resetMessage" ) span.checkmark + .has-text-centered.is-text-primary.my1.message {{ message }} button.save-button( :disabled="selectedLanguages.length === 0" @click="save" ) Save - .has-text-centered.is-text-primary.mt1.message {{ message }} - .has-text-centered + .has-text-centered.mt1 a.nowrap( :href="contributeLink" ) {{ contributeLinkText }} @@ -54,7 +54,7 @@ export default { return { showOptions: false, message: '', - contributeLink: 'https://github.com/jayehernandez/letra-extension', + contributeLink: 'https://github.com/jayehernandez/letra-extension', contributeLinkText: 'Contribute on Github' }; },