diff --git a/src/components/ItemSelect.vue b/src/components/ItemSelect.vue
index 3ec9904..9b28ad8 100644
--- a/src/components/ItemSelect.vue
+++ b/src/components/ItemSelect.vue
@@ -21,7 +21,7 @@
@@ -49,8 +49,8 @@ watch(openModal, o => { if (!o) handler.value!.focus() });
const page = ref<1 | 2>(1);
const icons = computed(() => items.filter(i => i.grid[0] === page.value));
-const iconsLeft = computed(() => icons.value.filter(i => i.grid[2] <= 6));
-const iconsRight = computed(() => icons.value.filter(i => i.grid[2] > 6));
+const iconsLeft = computed(() => icons.value.filter(i => i.grid[2] <= 7));
+const iconsRight = computed(() => icons.value.filter(i => i.grid[2] > 7));
const selected = (i: Item | null) => {
openModal.value = false;
diff --git a/src/components/RecipeSelect.vue b/src/components/RecipeSelect.vue
index e2c2c59..4199c3e 100644
--- a/src/components/RecipeSelect.vue
+++ b/src/components/RecipeSelect.vue
@@ -21,7 +21,7 @@
@@ -49,8 +49,8 @@ watch(openModal, o => { if (!o) handler.value!.focus() });
const page = ref<1 | 2>(1);
const icons = computed(() => recipes.filter(r => r.grid[0] === page.value));
-const iconsLeft = computed(() => icons.value.filter(r => r.grid[2] <= 6));
-const iconsRight = computed(() => icons.value.filter(r => r.grid[2] > 6));
+const iconsLeft = computed(() => icons.value.filter(r => r.grid[2] <= 7));
+const iconsRight = computed(() => icons.value.filter(r => r.grid[2] > 7));
const selected = (i: Recipe | null) => {
openModal.value = false;
@@ -73,10 +73,10 @@ const selected = (i: Recipe | null) => {
@media screen and (max-width: 640px) {
display: grid;
}
- grid-template: repeat(7, 1fr) / repeat(6, 1fr);
+ grid-template: repeat(7, 1fr) / repeat(7, 1fr);
--cell-size: 40px;
height: calc(7 * var(--cell-size));
- width: calc(6 * var(--cell-size));
+ width: calc(7 * var(--cell-size));
.icon {
width: var(--cell-size);
diff --git a/src/iconTexture.ts b/src/iconTexture.ts
index d272d0e..494e611 100644
--- a/src/iconTexture.ts
+++ b/src/iconTexture.ts
@@ -1,8 +1,8 @@
import { TextureLoader, WebGLRenderer, Texture, RGBAFormat, UnsignedByteType, Vector2 } from 'three';
import { allIconIds, iconUrl } from './data/icons';
-const WIDTH = 20;
-const HEIGHT = 20;
+const WIDTH = 24;
+const HEIGHT = 24;
const ICON_SIZE = 80;
export class IconTexture {