Google services, design fixes
Run Tests on Branches / Backend Tests (push) Successful in 2m2s
Run Tests on Branches / Frontend Tests (push) Successful in 1m55s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-07 12:50:32 +02:00
parent 6f6c117db2
commit afaa4de385
7 changed files with 37 additions and 13 deletions
+1
View File
@@ -89,5 +89,6 @@ jobs:
port: ${{ secrets.PORT }} port: ${{ secrets.PORT }}
script: | script: |
cd /docker/FarmaFinder cd /docker/FarmaFinder
git pull
docker compose pull docker compose pull
docker compose up -d docker compose up -d
-11
View File
@@ -15,17 +15,11 @@
}, },
"preview": { "preview": {
"distribution": "internal", "distribution": "internal",
"ios": {
"buildType": "preview"
},
"android": { "android": {
"buildType": "apk" "buildType": "apk"
} }
}, },
"production": { "production": {
"ios": {
"buildType": "release"
},
"android": { "android": {
"buildType": "app-bundle" "buildType": "app-bundle"
} }
@@ -33,11 +27,6 @@
}, },
"submit": { "submit": {
"production": { "production": {
"ios": {
"appleId": "",
"ascAppId": "",
"appleTeamId": ""
},
"android": { "android": {
"serviceAccountKeyPath": "./google-service-account.json" "serviceAccountKeyPath": "./google-service-account.json"
} }
+29
View File
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "441816187714",
"project_id": "farmaclic-53c42",
"storage_bucket": "farmaclic-53c42.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:441816187714:android:e212145141c570147fbedb",
"android_client_info": {
"package_name": "com.farmafinder.app"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyD6cnDvP9v1a7XUI7p8oF0jTPwTNBgKylY"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
+1
View File
@@ -11,6 +11,7 @@
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden;
overscroll-behavior-y: contain; overscroll-behavior-y: contain;
} }
@@ -1,10 +1,11 @@
.medicine-results { .medicine-results {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem; gap: 1rem;
margin-top: 0.5rem; margin-top: 0.5rem;
max-height: 70vh; max-height: 70vh;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: contain; overscroll-behavior: contain;
animation: fadeInUp 0.5s ease-out; animation: fadeInUp 0.5s ease-out;
} }
@@ -14,7 +14,7 @@
.pharmacy-grid { .pharmacy-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem; gap: 1rem;
} }
+3
View File
@@ -2,6 +2,7 @@
width: 100%; width: 100%;
max-width: 48rem; max-width: 48rem;
margin: 0 auto; margin: 0 auto;
overflow-x: hidden;
} }
@media (min-width: 1024px) { @media (min-width: 1024px) {
@@ -13,6 +14,7 @@
.search-content { .search-content {
padding: 1rem var(--margin-main) 2rem; padding: 1rem var(--margin-main) 2rem;
animation: fadeInUp 0.5s ease-out; animation: fadeInUp 0.5s ease-out;
overflow-x: hidden;
} }
.section-title { .section-title {
@@ -203,6 +205,7 @@
margin-top: 1.5rem; margin-top: 1.5rem;
max-height: 70vh; max-height: 70vh;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: contain; overscroll-behavior: contain;
} }