Add additional physical item types

This commit is contained in:
Johannes Loher 2020-10-29 22:01:13 +01:00
parent e51376dc02
commit abeb9d8b24
12 changed files with 248 additions and 29 deletions

View file

@ -7,6 +7,11 @@
padding: 0;
}
.grid-1col {
grid-column: span 1 / span 1;
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-3col {
grid-column: span 3 / span 3;
grid-template-columns: repeat(3, minmax(0, 1fr));