mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 12:25:08 -05:00
22 lines
325 B
SCSS
22 lines
325 B
SCSS
@use '../styles/Mixins/' as *;
|
|
|
|
.App {
|
|
display: grid;
|
|
}
|
|
|
|
.app-content {
|
|
display: grid;
|
|
row-gap: 1rem;
|
|
margin: 0.6rem;
|
|
padding: 1rem;
|
|
border-radius: 0.5rem;
|
|
background-color: var(--background-color);
|
|
grid-auto-rows: max-content;
|
|
width: $app-width;
|
|
height: $app-height;
|
|
}
|
|
|
|
.app-console {
|
|
z-index: 9999;
|
|
}
|