29 lines
509 B
SCSS
29 lines
509 B
SCSS
.maintenance-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 16px;
|
|
padding: 10px 15px;
|
|
font-size: 16px;
|
|
color: white;
|
|
background-color: #007bff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
} |