fix version of parcel

This commit is contained in:
2025-06-10 19:05:07 -04:00
parent a711acbea8
commit ef35a36512
11 changed files with 7517 additions and 43 deletions

View File

@@ -121,4 +121,40 @@ body {
#temp-buttons button {
text-align: center;
width: 3.5em;
}
.graph-container {
position: relative;
width: 100%;
max-width: 800px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
canvas {
width: 100%;
height: 100%;
}
#close-btn {
position: absolute;
top: 10px;
right: 10px;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px 10px;
font-size: 16px;
cursor: pointer;
z-index: 10;
border-radius: 4px;
}
#close-btn:hover {
background-color: #f8f8f8;
}