navix/old/frontend/src/style/AppGrid.css
2025-06-03 05:42:50 +03:00

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;
}