Skip to content

Commit

Permalink
Add cursor pointer for links
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPorzuczek committed Mar 4, 2021
1 parent 4d5c749 commit d59cbee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion resources/js/components/Navigation/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
t-bg-transparent
t-text-${themeColors.quaternary}
`"
style="margin-top: -43px; padding: 5px; padding-left: 20px; overflow: hidden;"
style="margin-top: -43px; padding: 5px; padding-left: 20px; overflow: hidden; cursor: pointer"
@click="onShowMenuClick"> ☰ </span>
<sidebar-menu
:is-dark="isDark"
Expand Down Expand Up @@ -159,6 +159,7 @@ export default {
font-weight: normal;
}
.v-sidebar-menu .vsm-link {
cursor: pointer;
overflow: hidden !important;
}
</style>
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
</body>

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}?v=0.12"></script>
<script src="{{ asset('js/app.js') }}?v=0.13"></script>
</html>
2 changes: 1 addition & 1 deletion resources/views/layouts/header-parts/custom-css.blade.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<link href="{{ asset('css/app.css') }}?v=0.10" rel="stylesheet">
<link href="{{ asset('css/app.css') }}?v=0.13" rel="stylesheet">
<link rel="stylesheet" href="/lib/overwrite-additional.css">

0 comments on commit d59cbee

Please sign in to comment.