Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ferchitoM committed Sep 27, 2022
1 parent 513e59c commit e6c3fd8
Show file tree
Hide file tree
Showing 11 changed files with 279 additions and 31 deletions.
26 changes: 13 additions & 13 deletions node_modules/.vite/deps/_metadata.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 59 additions & 10 deletions public/css/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion public/css/app.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions public/css/app.sass
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@

*
transition: all 500ms ease

.table
background-color: #fff
2 changes: 1 addition & 1 deletion public/css/user.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/*# sourceMappingURL=user.css.map */
/* No CSS *//*# sourceMappingURL=user.css.map */
10 changes: 9 additions & 1 deletion public/css/user.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions public/css/vue-transitions.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion public/css/vue-transitions.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions src/components/roles/admin/Aside.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,26 @@
@click="select(2)"
>Change password</router-link
>
<router-link
class="link"
to="/admin/account/products"
:class="{ 'link-selected': options[3] }"
@click="select(3)"
>Products</router-link
>
</div>
</template>

<script>
export default {
data() {
return {
options: [true, false, false],
options: [true, false, false, false],
};
},
methods: {
select(op) {
this.options = [false, false, false];
this.options = [false, false, false, false];
this.options[op] = true;
},
},
Expand Down
Loading

0 comments on commit e6c3fd8

Please sign in to comment.