fix syule types

This commit is contained in:
ilya-bkv 2024-04-08 18:28:08 +03:00
parent 6851c3af6a
commit 499341baea
2 changed files with 2 additions and 5 deletions

View File

@ -8,7 +8,7 @@
z-index: 10003;
.wide-container {
background: #fff;
background: var(--background-color);
@include media-breakpoint-down(lg) {
padding: 0 divide($container-padding-x, 2);

View File

@ -14,12 +14,9 @@ import { Icon } from '../_shared/Icon'
import { Popover } from '../_shared/Popover'
import { ShowOnlyOnClient } from '../_shared/ShowOnlyOnClient'
import { ProfilePopup } from './ProfilePopup'
import { useSnackbar } from '../../context/snackbar'
import { Popup } from '../_shared/Popup'
import { VotersList } from '../_shared/VotersList'
import styles from './Header/Header.module.scss'
import { ProfilePopup } from './ProfilePopup'
type Props = {
setIsProfilePopupVisible: (value: boolean) => void