mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
18 lines
251 B
CSS
18 lines
251 B
CSS
|
|
||
|
.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);
|
||
|
}
|