typos
This commit is contained in:
parent
0fd0f69afe
commit
dc51946fee
10
style.css
10
style.css
@ -31,11 +31,11 @@ button:hover {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
transform: none;
|
transform: none;
|
||||||
-webkit-transition: transform 0.2s;
|
-webkit-transition: transform 0.2s ease-out;
|
||||||
-moz-transition: transform 0.2s;
|
-moz-transition: transform 0.2s ease-out;
|
||||||
-ms-transition: transform 0.2s;
|
-ms-transition: transform 0.2s ease-out;
|
||||||
-o-transition: transform 0.2s;
|
-o-transition: transform 0.2s ease-out;
|
||||||
transition: transform 0.2s;
|
transition: transform 0.2s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel.hidden {
|
.panel.hidden {
|
||||||
|
@ -5,6 +5,7 @@ class Panel extends UI {
|
|||||||
super(document.createElement("div"), width, height);
|
super(document.createElement("div"), width, height);
|
||||||
|
|
||||||
this._hidden = true;
|
this._hidden = true;
|
||||||
|
this.element.classList.add("panel");
|
||||||
this.element.classList.add("shadow");
|
this.element.classList.add("shadow");
|
||||||
this.element.classList.add("hidden");
|
this.element.classList.add("hidden");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user