blob: 50a97c33e0ce8bf9f7eb9e972ecd9d46f127b041 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
.button-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.button-grid button {
padding: 10px;
text-align: center;
}
|