23 lines
457 B
SCSS
23 lines
457 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.buttons-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
button {
|
|
padding: 10px 62px;
|
|
margin-top: 8px;
|
|
background-color: var(--button-color);
|
|
color: var(--button-text-color);
|
|
border-radius: 3px;
|
|
border: none;
|
|
width: calc(50% - 12px);
|
|
}
|