14 lines
255 B
CSS
14 lines
255 B
CSS
.app-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
gap: 1rem;
|
|
justify-items: center;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.draggable-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
} |