mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-18 06:02:31 -05:00
18 lines
295 B
SCSS
18 lines
295 B
SCSS
@use '../styles/Mixins/' as *;
|
|
|
|
.App {
|
|
display: grid;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
.app-content {
|
|
display: grid;
|
|
row-gap: 0.5rem;
|
|
padding: $app-padding;
|
|
grid-auto-rows: min-content auto;
|
|
width: $app-width;
|
|
height: $app-height;
|
|
}
|