From e74c7948227cc8b6861b7739d53d8c6861e54d70 Mon Sep 17 00:00:00 2001 From: sbb45 Date: Wed, 17 Jun 2026 21:53:48 +0500 Subject: [PATCH] gap --- public/icons/max.svg | 2 +- public/icons/vk.svg | 2 +- src/app/main.styled.ts | 6 ++++++ src/app/page.tsx | 8 ++++---- src/components/HeaderPage.tsx | 14 ++++++++++---- src/styles/modal.styled.ts | 2 +- 6 files changed, 23 insertions(+), 11 deletions(-) diff --git a/public/icons/max.svg b/public/icons/max.svg index f83e6a2..4f00053 100644 --- a/public/icons/max.svg +++ b/public/icons/max.svg @@ -1 +1 @@ - + diff --git a/public/icons/vk.svg b/public/icons/vk.svg index 93e327c..73be283 100644 --- a/public/icons/vk.svg +++ b/public/icons/vk.svg @@ -1,3 +1,3 @@ - + diff --git a/src/app/main.styled.ts b/src/app/main.styled.ts index 1303a8f..f65fdad 100644 --- a/src/app/main.styled.ts +++ b/src/app/main.styled.ts @@ -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{ diff --git a/src/app/page.tsx b/src/app/page.tsx index 9d888b8..29c0552 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -136,12 +136,12 @@ export default function Home() { )} - - + + - - + + {gis2 ? ( diff --git a/src/components/HeaderPage.tsx b/src/components/HeaderPage.tsx index 0835035..26c08c8 100644 --- a/src/components/HeaderPage.tsx +++ b/src/components/HeaderPage.tsx @@ -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 = ({tg, gis2, phone}) => { )} - - + + - - + + diff --git a/src/styles/modal.styled.ts b/src/styles/modal.styled.ts index 29f6e1e..6cc21ec 100644 --- a/src/styles/modal.styled.ts +++ b/src/styles/modal.styled.ts @@ -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)};