Skip to content

Commit

Permalink
Merge pull request #38 from azkyakhan/#1xx2g9h
Browse files Browse the repository at this point in the history
Improved card styling for desktop view of orders page (#1xx2g9h)
  • Loading branch information
dt2patel committed Jan 5, 2022
2 parents a6337d1 + fbfb537 commit 04e9e91
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelogs/unreleased/-1xx2g9h.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Improved card styling for desktop view of orders page
ticket_id: "#1xx2g9h"
merge_request: 38
author: Azkya Khan
type: changed
12 changes: 11 additions & 1 deletion src/views/Orders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,14 @@ export default defineComponent({
};
},
});
</script>
</script>

<style scoped>
@media (min-width: 343px) {
ion-content > div {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(343px, 1fr));
}
}
</style>

0 comments on commit 04e9e91

Please sign in to comment.