mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-10 18:05:16 +00:00
18 lines
251 B
CSS
Vendored
Generated
18 lines
251 B
CSS
Vendored
Generated
|
|
.sad-container {
|
|
display: grid;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
grid-template-columns: 25rem 1fr;
|
|
& > * {
|
|
grid-row: 1;
|
|
}
|
|
}
|
|
.sad-text {
|
|
grid-column: 1/3;
|
|
}
|
|
.sad-girl {
|
|
grid-column: 2/3;
|
|
width: min(75vw, 100vh);
|
|
}
|