41 lines
670 B
SCSS
41 lines
670 B
SCSS
#container {
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
#container strong {
|
|
font-size: 20px;
|
|
line-height: 26px;
|
|
}
|
|
|
|
#container p {
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
|
|
color: #8c8c8c;
|
|
|
|
margin: 0;
|
|
}
|
|
|
|
#container a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.custom-margin {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.center-button-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 10px; /* Add padding to ensure it doesn't stick to the bottom */
|
|
}
|
|
ion-toast {
|
|
--background: green;
|
|
--color: white;
|
|
} |