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

Feature/deseng662: Implemented new footer #2571

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## July 31, 2024

- **Feature** New footer (public and admin) [🎟️ DESENG-662](https://citz-gdx.atlassian.net/browse/DESENG-662)
- Implemented new footer design for desktop and mobile viewports.
- Addressed some issues with z-index between footer and side nav.

## July 30, 2024

- **Feature** New admin header [🎟️ DESENG-660](https://citz-gdx.atlassian.net/browse/DESENG-660)
Expand Down
56 changes: 56 additions & 0 deletions met-web/src/assets/images/BritishColumbiaLogoDarkCropped.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions met-web/src/components/feedback/FeedbackModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import { createFeedback } from 'services/feedbackService';
import { openNotification } from 'services/notificationService/notificationSlice';
import { useAppDispatch } from 'hooks';
import { customRatings, commentTypes } from './constants';
import { ZIndex } from 'styles/Theme';
import { useAppTranslation } from 'hooks';
import { Button, IconButton, CustomTextField } from 'components/common/Input';
import { useTheme } from '@mui/material/styles';
import { ZIndex } from 'styles/Theme';

export const FeedbackModal = () => {
const { t: translate } = useAppTranslation();
Expand Down Expand Up @@ -94,8 +94,8 @@ export const FeedbackModal = () => {
bottom: bottomSpacing,
right: rightSpacing,
transform: 'rotate(-90deg)',
zIndex: ZIndex.footer + 1,
transformOrigin: 'bottom right',
zIndex: ZIndex.feedback,
}}
>
<FontAwesomeIcon
Expand Down
4 changes: 0 additions & 4 deletions met-web/src/components/layout/Footer/constants.ts

This file was deleted.

Loading
Loading