mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 19:15:28 -05:00
25 lines
452 B
SCSS
25 lines
452 B
SCSS
@use '../../../styles/Mixins/' as *;
|
|
|
|
.work-in-progress {
|
|
display: grid;
|
|
width: 100%;
|
|
height: $app-content-height;
|
|
grid-auto-rows: max-content;
|
|
background-color: var(--background-color-secondary);
|
|
border-radius: 0.4rem;
|
|
place-content: center;
|
|
place-items: center;
|
|
row-gap: 1rem;
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
max-width: 50rem;
|
|
color: var(--subtext-color-bright);
|
|
}
|
|
}
|