Skip to content
Snippets Groups Projects
Commit e16bd46f authored by Jenny Zhang's avatar Jenny Zhang
Browse files

Add scrolling to #proof-tree-container for overflow content

- Updated #proof-tree-container CSS to enable horizontal and vertical scrolling when content overflows.
- Ensured the #proof-tree remains centered within the container.
parent 9086d2e2
No related branches found
No related tags found
No related merge requests found
...@@ -200,9 +200,13 @@ export default { ...@@ -200,9 +200,13 @@ export default {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
min-height: 400px; min-height: 700px;
border: 1px solid #dcdfe6; border: 1px solid #dcdfe6;
padding: 20px; padding: 20px;
overflow: auto;
/* Enable scrolling */
box-sizing: border-box;
/* Ensure padding is included in the width and height */
} }
#proof-tree { #proof-tree {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment