Skip to content

Commit

Permalink
fix(webapp): fix dropdown menu width on non-expandable nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge committed Nov 3, 2024
1 parent 17e528c commit b22de29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion landing-page/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ <h5 class="feature-title font-bold mb-1">SASS files</h5>

<!--Copyright-->
<div class="footer-copyright py-3" style="color: aliceblue">
© 2023 Copyright:
© 2024 Copyright:
<a href="https://github.com/fynnfluegge/rocketnotes" target="_blank">
<i class="fa fa-github"></i>
Rocketnotes Contributors
Expand Down
5 changes: 4 additions & 1 deletion webapp/src/app/component/navigation/sidenav.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,10 @@
<button class="dropbtn" style="position: relative; top: -4px">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div
class="dropdown-content"
style="width: 42px; padding: 0; margin: 0"
>
<button
*ngIf="!node.deleted"
mat-icon-button
Expand Down

0 comments on commit b22de29

Please sign in to comment.