gap
This commit is contained in:
@@ -529,6 +529,12 @@ export const HeaderBlock = styled.div`
|
||||
.tgLink{
|
||||
margin: 0 12px 0 8px;
|
||||
}
|
||||
.vkLink{
|
||||
margin: 0 6px 0 8px;
|
||||
}
|
||||
.maxLink{
|
||||
margin: 0 8px 0 6px;
|
||||
}
|
||||
.footerPhone{
|
||||
|
||||
h4{
|
||||
|
||||
+4
-4
@@ -136,12 +136,12 @@ export default function Home() {
|
||||
<Image src="/icons/tg.png" alt="tg" width={48} height={48} loading="lazy" />
|
||||
)}
|
||||
|
||||
<Link href="https://vk.ru" target="_blank">
|
||||
<Image src="/icons/vk.svg" alt="vk" width={52} height={52} loading="lazy" />
|
||||
<Link href="https://vk.ru" className="vkLink" target="_blank">
|
||||
<Image src="/icons/vk.svg" alt="vk" width={44} height={44} loading="lazy" />
|
||||
</Link>
|
||||
|
||||
<Link href="https://max.ru" target="_blank">
|
||||
<Image src="/icons/max.svg" alt="max" width={52} height={52} loading="lazy" />
|
||||
<Link href="https://max.ru" className="maxLink" target="_blank">
|
||||
<Image src="/icons/max.svg" alt="max" width={44} height={44} loading="lazy" />
|
||||
</Link>
|
||||
|
||||
{gis2 ? (
|
||||
|
||||
@@ -85,6 +85,12 @@ const HeaderBlock = styled.div`
|
||||
.tgLink{
|
||||
margin: 0 12px 0 8px;
|
||||
}
|
||||
.vkLink{
|
||||
margin: 0 6px 0 8px;
|
||||
}
|
||||
.maxLink{
|
||||
margin: 0 8px 0 6px;
|
||||
}
|
||||
&.desktopOnly {
|
||||
@media (max-width: 900px) {
|
||||
display: none;
|
||||
@@ -225,12 +231,12 @@ const HeaderPage: React.FC<HeaderPageProps> = ({tg, gis2, phone}) => {
|
||||
</Link>
|
||||
)}
|
||||
|
||||
<Link href="https://vk.ru" className="headerImage" target="_blank">
|
||||
<Image src="/icons/vk.svg" alt="vk" width={52} height={52} loading="lazy" />
|
||||
<Link href="https://vk.ru" className="vkLink headerImage" target="_blank">
|
||||
<Image src="/icons/vk.svg" alt="vk" width={44} height={44} loading="lazy" />
|
||||
</Link>
|
||||
|
||||
<Link href="https://max.ru" className="headerImage" target="_blank">
|
||||
<Image src="/icons/max.svg" alt="max" width={52} height={52} loading="lazy" />
|
||||
<Link href="https://max.ru" className="maxLink headerImage" target="_blank">
|
||||
<Image src="/icons/max.svg" alt="max" width={44} height={44} loading="lazy" />
|
||||
</Link>
|
||||
|
||||
<HeaderPhone>
|
||||
|
||||
@@ -24,7 +24,7 @@ export const ModalWrapper = styled.div<{ $animateIn: boolean; $compact?: boolean
|
||||
border-radius: 20px;
|
||||
width: 70vw;
|
||||
height: ${({ $compact }) => $compact ? 'auto' : '94vh'};
|
||||
max-height: ${({ $compact }) => $compact ? '80vh' : 'none'};
|
||||
max-height: ${({ $compact }) => $compact ? '90vh' : 'none'};
|
||||
overflow-y: ${({ $compact }) => $compact ? 'auto' : 'visible'};
|
||||
position: relative;
|
||||
opacity: ${({ $animateIn }) => ($animateIn ? 1 : 0)};
|
||||
|
||||
Reference in New Issue
Block a user