23 lines
516 B
SCSS
23 lines
516 B
SCSS
:host {
|
|
position: fixed;
|
|
bottom: 16px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
.footer-buttons-container {
|
|
max-width: 400px;
|
|
width: 90vw;
|
|
&__button {
|
|
width: 100%;
|
|
height: 34px;
|
|
background: #09467f;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
font-weight: 600;
|
|
letter-spacing: 2px;
|
|
border: none;
|
|
margin-top: 8px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
} |