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

[Outreachy Task Submission] Fixed Mobile Screen Navigation at the bottom of the screen menubar #865

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
aef3f2a
Fixed Mobile Mode or Smaller Screen Navigation at the bottom of the s…
crocmons Mar 11, 2024
ce53d25
Fixed Mobile Mode or Smaller Screen Navigation at the bottom of the s…
crocmons Mar 11, 2024
af9a991
Merge branch '#4807-fixed-mobile-navigation' of github.com:crocmons/p…
crocmons Mar 24, 2024
7bdfb4d
Implement e2e tests to verify users list is visible on visiting users…
shakirandagire Mar 11, 2024
c99b1b4
E2e fix failing filter test (#863)
AmTryingMyBest Mar 11, 2024
8945215
USH-1125: Show location fields as available to import CSV data into (…
Angamanga Mar 12, 2024
bba0bad
E2e fix category test (#875)
AmTryingMyBest Mar 13, 2024
44b29c0
Ush 1203 (#874)
ushahidlee Mar 13, 2024
b0f8216
Resolve mobile issues Ush 991 1099 (#870)
webong Mar 14, 2024
6577769
USH-1212 Survey Fields are duplicated in the mapping section (#892)
ushahidlee Mar 15, 2024
fb1c463
update cypress to latest version (#905)
AmTryingMyBest Mar 17, 2024
8ac3223
correct failing test (#906)
AmTryingMyBest Mar 17, 2024
cba927f
update lat and long values to match selected location (#907)
AmTryingMyBest Mar 17, 2024
608003a
E2e stabilize edit post test (#911)
AmTryingMyBest Mar 18, 2024
96477cd
[Fix] User Name and email not available past a certain zoom level or …
Aquilaafuadajo Mar 18, 2024
3cd58e0
chore: change prompt message in choose-deployment mobile component (#…
webong Mar 18, 2024
18926f3
USH-1216: switch db engine to MariaDB 10.11 for e2e tests (#899)
tuxpiper Mar 18, 2024
7ce4440
E2e tests for Survey Configuration - Require posts to be reviewed bef…
shakirandagire Mar 20, 2024
1ddf60d
fix: uploaded images are not displayed on mobile app (#918)
webong Mar 20, 2024
cafc44c
Removing call to v3-endpoint for post-details (#921)
Angamanga Mar 20, 2024
bb3d5f1
Merge branch 'development' of github.com:crocmons/platform-client-mzi…
crocmons Mar 24, 2024
615f219
Merge branch '#4807-fixed-mobile-navigation' of github.com:crocmons/p…
crocmons Mar 24, 2024
e68c440
updated code and added bottom position on css
crocmons Mar 24, 2024
f5722f1
fixed css line
crocmons Mar 24, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
class="menu__footer__button"
*ngIf="isDonateAvailable"
></app-donation-button>

<mzima-client-button
fill="outline"
color="transparent-style-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
.menu {
&__footer-container {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
bottom: 125px;
}

&__footer {
Expand Down