Skip to content

Commit

Permalink
Fix: notification center width on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
KaushikKC authored and katspaugh committed Sep 18, 2023
1 parent d158e17 commit e200a0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import IconButton from '@mui/material/IconButton'
import BellIcon from '@/public/images/notifications/bell.svg'
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
import ExpandLessIcon from '@mui/icons-material/ExpandLess'

import { useAppDispatch, useAppSelector } from '@/store'
import {
selectNotifications,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
border: 1px solid var(--color-border-light);
}

@media (max-width: 599.95px) {
.popoverContainer {
width: calc(100vw - 30px);
}
}

.popoverHeader {
display: flex;
align-items: center;
Expand Down

0 comments on commit e200a0e

Please sign in to comment.