34 lines
671 B
Plaintext
34 lines
671 B
Plaintext
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 75vh;
|
|
// padding: 24px;
|
|
min-height: 400px;
|
|
color: var(--oak-brand-color);
|
|
|
|
.icon {
|
|
font-size: 72px;
|
|
color: var(--oak-success-color);
|
|
}
|
|
|
|
.title {
|
|
font-weight: 500;
|
|
font-size: 20px;
|
|
line-height: 28px;
|
|
margin-top: 8px;
|
|
color: var(--oak-text-color-primary);
|
|
}
|
|
|
|
.description {
|
|
margin: 8px 0 32px;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
color: var(--oak-text-color-secondary);
|
|
}
|
|
|
|
.rightButton {
|
|
margin-left: 8px;
|
|
}
|
|
} |