Skip to content

Commit

Permalink
style(NavLink): Add temporary block on vault folder anchor tags
Browse files Browse the repository at this point in the history
This commit adds a temporary fix to the NavLink component in order to disable pointer events and set the cursor to default. This is achieved by adding the CSS properties `pointer-events: none` and `cursor: default` to the `.folder-title` class.
  • Loading branch information
SakuraIsayeki committed Aug 13, 2023
1 parent 8415983 commit 5a7eede
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nodsoft_moltenobsidian_web/src/components/NavLink.astro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ aside > nav {
&folder-title {
// set bold font
font-weight: 600;

// Temp fix : Disable
pointer-events: none;
cursor: default;
text-decoration: none;
}

&item-title {
Expand Down

0 comments on commit 5a7eede

Please sign in to comment.