Skip to content

Commit 0fe7924

Browse files
committed
[General] Clean up
1 parent 57f93b6 commit 0fe7924

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

src/App.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
@include gen-theme('.theme-blue', $theme-blue);
3030
@include gen-theme('.theme-black', $theme-black);
3131
@include gen-theme('.theme-purple', $theme-purple);
32-
// NOTE: Simply add a new one like above to the list here, template is theme-<theme-name here> for the first arg,
33-
// second arg simply has to correspond to scss var in src/scss/_theme.scss
3432
3533
.notifications {
3634
.vue-notification {

src/editor/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export const autoSaveInterval = ref( 60000 );
2323
// Colors
2424
export const assignedLineColor = ref( rs.getPropertyValue( '--theme-information-shade' ) );
2525

26-
// TODO: Do we want this setting?
2726
export const machineAssignedLineColor = ref( rs.getPropertyValue( '--theme-warning-shade' ) );
2827

2928
export const cursorLineColor = ref( rs.getPropertyValue( '--theme-bg-4' ) );

src/editor/tour/editorTour.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
} from 'vue';
77

88

9-
// TODO: To change theme, follow this guide: https://globalhive.github.io/vuejs-tour/guide/css-theme.html
9+
// To change theme, follow this guide: https://globalhive.github.io/vuejs-tour/guide/css-theme.html
1010

1111

1212
export const useEditorTour = ( tour: Ref<VTourExposedMethods | null> ) => {

src/scss/util/_app-setup.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
}
2121

2222
/* Vue intra-page transitions */
23-
// TODO: Update transition config here, maybe add more options
2423
.scale-enter-active,
2524
.scale-leave-active {
2625
transition: all 0.5s ease;

src/ts/util/theme.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
watch
55
} from 'vue';
66

7-
// TODO: Add more themes
87
const themes: Ref<string[]> = ref( [
98
'Blue',
109
'Red',

0 commit comments

Comments
 (0)