Skip to content

Commit

Permalink
feature/deseng662: Implemented new footer and addressed z-index issue…
Browse files Browse the repository at this point in the history
…s with sidenav. (#2571)
  • Loading branch information
jareth-whitney authored Aug 1, 2024
1 parent 48adce8 commit ec3c7be
Show file tree
Hide file tree
Showing 9 changed files with 264 additions and 116 deletions.
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

0 comments on commit ec3c7be

Please sign in to comment.