add backspace button
This commit is contained in:
parent
dacf8caecf
commit
69a62dc4fb
|
|
@ -45,6 +45,8 @@
|
|||
<button id="3" type="button">3</button>
|
||||
|
||||
<button id="0" type="button">0</button>
|
||||
|
||||
<button id="backspace" type="button">⌫</button>
|
||||
</div>
|
||||
|
||||
<div id="operators">
|
||||
|
|
|
|||
|
|
@ -60,6 +60,10 @@ label[for="expr"] {
|
|||
grid-template-columns: subgrid;
|
||||
}
|
||||
|
||||
#backspace {
|
||||
grid-column: 3;
|
||||
}
|
||||
|
||||
#operators {
|
||||
grid-column: 4;
|
||||
grid-row: 1 / 3;
|
||||
|
|
|
|||
Loading…
Reference in New Issue