mirror of
https://github.com/godotengine/godot-website-cover-generator.git
synced 2026-01-03 18:11:19 +03:00
32 lines
377 B
CSS
32 lines
377 B
CSS
/* GENERAL LAYOUT. */
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 24px;
|
|
}
|
|
|
|
/* TOOLBAR STYLING. */
|
|
|
|
.toolbar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.toolbar-item {
|
|
|
|
}
|
|
|
|
/* CANVAS STYLING. */
|
|
|
|
.canvas-container {
|
|
max-height: 540px;
|
|
aspect-ratio: 16 / 9;
|
|
}
|
|
|
|
.canvas-container > canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|