File size: 408 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
.component-button {
display: inline-flex;
width: 25%;
flex: 1 0 auto;
}
.component-button.wide {
width: 50%;
}
.component-button button {
background-color: #e0e0e0;
border: 0;
font-size: 1.5rem;
margin: 0 1px 0 0;
flex: 1 0 auto;
padding: 0;
}
.component-button:last-child button {
margin-right: 0;
}
.component-button.orange button {
background-color: #f5923e;
color: white;
}
|