15 lines
232 B
CSS
15 lines
232 B
CSS
[class*='html'] {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
[class*='html'] > [class*='button'] {
|
|
width: 100%;
|
|
height: 49px;
|
|
/* margin-right: 40px; */
|
|
background: #000;
|
|
border: #000;
|
|
}
|