Skip to content

Commit

Permalink
Change overflow property for background image
Browse files Browse the repository at this point in the history
-Updated the overflow property from  to
to ensure vertical scrollbars appear only when necessary. This
improves the user experience by preventing unnecessary scrollbars
and maintaining a cleaner interface. The change also helps in
responsive design, ensuring content is accessible on smaller screens.
  • Loading branch information
zalbright90 committed Jun 22, 2024
1 parent 0dd62ab commit 1ae0d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion muninn.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ body {
background-position: center;
background-repeat: no-repeat;
backdrop-filter: blur(10px);
overflow: scroll;
overflow-y: auto;
}

.container {
Expand Down

0 comments on commit 1ae0d6d

Please sign in to comment.