Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaye Hernandez committed May 25, 2020
1 parent 87d6ae4 commit 2f6b00e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import axios from 'axios';

Vue.use(Vuex);

const currentLanguagesCount = 7;
const currentLanguagesCount = 8;

const state = {
dailyData: {
Expand Down
1 change: 1 addition & 0 deletions client/src/style/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand Down
3 changes: 1 addition & 2 deletions client/src/style/options.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -67,7 +67,6 @@
font-size: $fs-m;
width: 100%;
border-radius: 5px;
margin-top: $spacing-s;
transition: all 0.8s;
}

Expand Down
6 changes: 3 additions & 3 deletions client/src/views/Options.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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'
};
},
Expand Down

0 comments on commit 2f6b00e

Please sign in to comment.