move button into grid and do not show grid on pageload

This commit is contained in:
David Remer 2020-08-20 08:20:05 +03:00
parent 3edcc17956
commit e900b856d3
2 changed files with 9 additions and 4 deletions

View file

@ -4,7 +4,7 @@
width: 100%;
display: grid;
grid-template-columns: 55% 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-template-rows: 1fr 1fr auto;
grid-column-gap: 15px;
margin-bottom: 15px;
@ -28,6 +28,11 @@
padding: 5px;
}
button {
grid-row: 3/4;
grid-column: 1/4;
}
label {
line-height: 30px;
}