diff --git a/vue/src/apps/ShoppingListView/ShoppingListView.vue b/vue/src/apps/ShoppingListView/ShoppingListView.vue index f26fb7d1..64fa073d 100644 --- a/vue/src/apps/ShoppingListView/ShoppingListView.vue +++ b/vue/src/apps/ShoppingListView/ShoppingListView.vue @@ -1,147 +1,184 @@ @@ -1241,26 +1294,54 @@ export default { diff --git a/vue/src/components/Modals/LookupInput.vue b/vue/src/components/Modals/LookupInput.vue index 24dde754..90ca7f3f 100644 --- a/vue/src/components/Modals/LookupInput.vue +++ b/vue/src/components/Modals/LookupInput.vue @@ -1,172 +1,173 @@ diff --git a/vue/src/components/ShoppingLineItem.vue b/vue/src/components/ShoppingLineItem.vue index 97055615..a72f20f0 100644 --- a/vue/src/components/ShoppingLineItem.vue +++ b/vue/src/components/ShoppingLineItem.vue @@ -1,287 +1,322 @@ @@ -296,4 +331,28 @@ export default { /* left: 0; top: 50%; width: 100%; /* …with the top across the middle */ /* border-bottom: 1px solid #000; /* …and with a border on the top */ /* } */ +.checkbox-control { + font-size: 0.6rem +} + +.checkbox-control-mobile { + font-size: 1rem +} + +.rotate { + -moz-transition: all 0.25s linear; + -webkit-transition: all 0.25s linear; + transition: all 0.25s linear; +} + +.rotated { + -moz-transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.unit-badge-lg { + font-size: 1rem !important; + font-weight: 500 !important; +}