Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved: app to ionic version7.6.0 (#269) #285

Merged
merged 5 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improved: css to fix ui failures (#269)
  • Loading branch information
amansinghbais committed Apr 4, 2024
commit c1ab8e31caeb0c9fce72edfe1f89ece97c1a070e
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ import localeMessages from './i18n/locales';

const app = createApp(App)
.use(IonicVue, {
mode: 'md'
mode: 'md',
innerHTMLTemplatesEnabled: true
})
.use(router)
.use(i18n)
Expand Down
4 changes: 4 additions & 0 deletions src/views/orders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,10 @@ export default defineComponent({
gap: 10px;
}

ion-chip {
height: 0%;
}

@media (max-width: 991px) {

/* ==============
Expand Down
8 changes: 6 additions & 2 deletions src/views/product-details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ export default defineComponent({
.product-info {
display: flex;
flex-direction: column;
justify-content: space-between;
justify-content: start;
}

.product-info > h1 {
Expand Down Expand Up @@ -660,7 +660,7 @@ hr {

ion-card {
display: grid;
grid-template-columns: max-content 1fr 200px;
grid-template-columns: repeat(3, minmax(200px, 1fr));
align-items: center;
padding: 16px;
}
Expand All @@ -670,6 +670,10 @@ ion-card {
justify-content: center;
}

ion-chip {
height: 0%;
}

@media (max-width: 991px) {

/* ==============
Expand Down
Loading