Skip to content

Commit

Permalink
Injections now working correctly and understood. Making alternate def…
Browse files Browse the repository at this point in the history
…ault if injection is not present though
  • Loading branch information
philwing100 committed Jun 11, 2024
1 parent 7628e9d commit ca5eee0
Show file tree
Hide file tree
Showing 5 changed files with 299 additions and 207 deletions.
23 changes: 13 additions & 10 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
<template>
<SideBar />
<div class="everythingElse">
</div>

<SideBar :colors="colors"/>
<div class="everythingElse">
</div>
</template>

<script>
import SideBar from './components/SidebarComponents/SideBar.vue';
import colorsData from '@/assets/colors.json';
export default {
components: {
SideBar,
},
provide() {
return {
colors: colorsData,
};
}
};
</script>

<style>
body, html {
margin: 0;
padding: 0;
color: white;
background-color: #343541;
color: var(--text-color);
background-color: var(--primary-color);
}
#app {
Expand All @@ -30,8 +34,7 @@ body, html {
-moz-osx-font-smoothing: grayscale;
}
.everythingElse{
padding-left:200px;
.everythingElse {
padding-left: 200px;
}
</style>
13 changes: 13 additions & 0 deletions src/components/ListItems/Timer.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>


</template>

<script>
</script>

<style>
</style>
18 changes: 18 additions & 0 deletions src/components/SettingsComponents/ColorPicker.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<template>
<div class="lists">
<h1>BruhList</h1>
</div>
</template>

<script>
export default {
}
</script>

<style>
</style>

Loading

0 comments on commit ca5eee0

Please sign in to comment.