We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cef269 commit 823b508Copy full SHA for 823b508
index.css
@@ -44,10 +44,15 @@ body {
44
}
45
46
.computation-history {
47
-
48
height: 530px;
49
width: 400px;
50
+ display: flex;
51
+ visibility: hidden;
52
+}
53
+
54
+.computation-history.visility {
55
+ visibility: visible;
56
57
58
index.js
@@ -16,6 +16,7 @@ console.log(slidingPart)
16
17
historyBtn.addEventListener("click", () => {
18
slidingPart.classList.toggle("slide")
19
+ computationHistory.classList.toggle("visility")
20
})
21
22
0 commit comments