image update
This commit is contained in:
@@ -39,6 +39,18 @@
|
|||||||
android:pathPrefix="/page"
|
android:pathPrefix="/page"
|
||||||
android:pathPattern="/page(/.*)?" />
|
android:pathPattern="/page(/.*)?" />
|
||||||
|
|
||||||
|
<data
|
||||||
|
android:scheme="https"
|
||||||
|
android:host="www.globaljain.net"
|
||||||
|
android:pathPrefix="/page"
|
||||||
|
android:pathPattern="/page(/.*)?" />
|
||||||
|
|
||||||
|
<data
|
||||||
|
android:scheme="https"
|
||||||
|
android:host="www.globaljain.net"
|
||||||
|
android:pathPrefix="/auth"
|
||||||
|
android:pathPattern="/auth(/.*)?" />
|
||||||
|
|
||||||
<data
|
<data
|
||||||
android:scheme="https"
|
android:scheme="https"
|
||||||
android:host="globaljain.net"
|
android:host="globaljain.net"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
ext {
|
ext {
|
||||||
versionCode = 10
|
versionCode = 20
|
||||||
versionName = "1.2.4"
|
versionName = "1.3.4"
|
||||||
minSdkVersion = 22
|
minSdkVersion = 22
|
||||||
compileSdkVersion = 34
|
compileSdkVersion = 35
|
||||||
targetSdkVersion = 34
|
targetSdkVersion = 35
|
||||||
androidxActivityVersion = '1.8.0'
|
androidxActivityVersion = '1.8.0'
|
||||||
androidxAppCompatVersion = '1.6.1'
|
androidxAppCompatVersion = '1.6.1'
|
||||||
androidxCoordinatorLayoutVersion = '1.2.0'
|
androidxCoordinatorLayoutVersion = '1.2.0'
|
||||||
|
|||||||
@@ -3,5 +3,6 @@
|
|||||||
"integrations": {
|
"integrations": {
|
||||||
"capacitor": {}
|
"capacitor": {}
|
||||||
},
|
},
|
||||||
"type": "angular"
|
"type": "angular",
|
||||||
|
"id": "8319ffa8"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -226,3 +226,81 @@ ion-card {
|
|||||||
background-position: -2800px 0;
|
background-position: -2800px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* --- FINAL FIX: REMOVE ALL EXTRA SPACE AROUND SWIPER IMAGES (ANDROID 11–15) --- */
|
||||||
|
|
||||||
|
/* Wrapper alignment reset */
|
||||||
|
.img-upload,
|
||||||
|
.swiper-container,
|
||||||
|
.swiper-slide,
|
||||||
|
.swiper-zoom-container,
|
||||||
|
.single-slide {
|
||||||
|
width: 100%;
|
||||||
|
height: auto !important;
|
||||||
|
min-height: 0 !important;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure the swiper container itself doesn’t add margins or internal spacing */
|
||||||
|
swiper-container {
|
||||||
|
--swiper-pagination-bottom: 0px;
|
||||||
|
--swiper-pagination-top: 0px;
|
||||||
|
--swiper-pagination-color: var(--ion-color, #000);
|
||||||
|
--swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 0.3);
|
||||||
|
--swiper-pagination-bullet-size: 6px;
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
height: auto !important;
|
||||||
|
min-height: 0 !important;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix for slide internal layout and image spacing */
|
||||||
|
swiper-slide,
|
||||||
|
.swiper-slide-active {
|
||||||
|
width: 100% !important;
|
||||||
|
height: auto !important;
|
||||||
|
min-height: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Image behavior — no space anywhere */
|
||||||
|
.img-upload img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
/* removes inline gap */
|
||||||
|
object-fit: contain;
|
||||||
|
/* prevents cropping */
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
line-height: 0;
|
||||||
|
/* removes font baseline gap */
|
||||||
|
vertical-align: middle;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove default IonCardContent padding/margin */
|
||||||
|
ion-card-content {
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove residual padding in md mode (for Android) */
|
||||||
|
ion-card-content.md.card-content-md.hydrated {
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure container fits image exactly with no background gap */
|
||||||
|
.img-upload {
|
||||||
|
background: transparent !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
@@ -2,10 +2,10 @@ export const environment = {
|
|||||||
production: true,
|
production: true,
|
||||||
|
|
||||||
// ✅ Laravel backend API (Localhost)
|
// ✅ Laravel backend API (Localhost)
|
||||||
apiUrl: 'https://lightyellow-mule-306456.hostingersite.com/api/v1/',
|
apiUrl: 'https://globaljain.net/api/v1/',
|
||||||
|
|
||||||
// ✅ Local site URL (Ionic runs here)
|
// ✅ Local site URL (Ionic runs here)
|
||||||
siteUrl: 'https://lightyellow-mule-306456.hostingersite.com/',
|
siteUrl: 'https://globaljain.net',
|
||||||
|
|
||||||
// ✅ Google Maps API Key (same as before)
|
// ✅ Google Maps API Key (same as before)
|
||||||
mapKey: 'AIzaSyAoZv-67UKDVz5Rp3fa3e2xcHunahFGKOc',
|
mapKey: 'AIzaSyAoZv-67UKDVz5Rp3fa3e2xcHunahFGKOc',
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
apiUrl: 'https://lightyellow-mule-306456.hostingersite.com/api/v1/',
|
apiUrl: 'https://globaljain.net/api/v1/',
|
||||||
|
|
||||||
// ✅ Local site URL (Ionic runs here)
|
// ✅ Local site URL (Ionic runs here)
|
||||||
siteUrl: 'https://lightyellow-mule-306456.hostingersite.com/',
|
siteUrl: 'https://globaljain.net',
|
||||||
mapKey: 'AIzaSyAoZv-67UKDVz5Rp3fa3e2xcHunahFGKOc',
|
mapKey: 'AIzaSyAoZv-67UKDVz5Rp3fa3e2xcHunahFGKOc',
|
||||||
firebaseOptions: {
|
firebaseOptions: {
|
||||||
apiKey: 'AIzaSyDvBIP5p4o8zVhLXq0CjmRyh6mT99vYY_4',
|
apiKey: 'AIzaSyDvBIP5p4o8zVhLXq0CjmRyh6mT99vYY_4',
|
||||||
|
|||||||
@@ -4,10 +4,10 @@
|
|||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
apiUrl: 'https://lightyellow-mule-306456.hostingersite.com/api/v1/',
|
apiUrl: 'https://globaljain.net/api/v1/',
|
||||||
|
|
||||||
// ✅ Local site URL (Ionic runs here)
|
// ✅ Local site URL (Ionic runs here)
|
||||||
siteUrl: 'https://lightyellow-mule-306456.hostingersite.com/',
|
siteUrl: 'https://globaljain.net',
|
||||||
|
|
||||||
|
|
||||||
// apiUrl: 'http://127.0.0.1:8000/api/v1/',
|
// apiUrl: 'http://127.0.0.1:8000/api/v1/',
|
||||||
|
|||||||
Reference in New Issue
Block a user