30 lines
479 B
CSS
30 lines
479 B
CSS
.exception-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.exception-header > i {
|
|
font-size: 3rem;
|
|
line-height: normal;
|
|
color: var(--bs-danger);
|
|
}
|
|
|
|
.exception-header > span {
|
|
font-size: x-large;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.text {
|
|
font-size: medium;
|
|
font-weight: 500;
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
|
|
code {
|
|
width: 100%;
|
|
height: auto;
|
|
color: var(--bs-gray-dark);
|
|
} |