Skip to content

Commit

Permalink
fix: prevent tooltips overflowing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Oct 15, 2023
1 parent 827f211 commit 3341dd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
@tailwind utilities;

html, body {
overflow: visible;
/* Prevent tooltips (e.g. in study queue modal) from pushing the page out */
overflow-x: hidden;
overflow-y: visible;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
Expand Down

0 comments on commit 3341dd3

Please sign in to comment.