29 lines
355 B
CSS
29 lines
355 B
CSS
.page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.title {
|
|
margin: 0;
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.subtitle {
|
|
margin: 0.4rem 0 0;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
button {
|
|
min-width: 160px;
|
|
}
|