fix: расположение подального окна + отступ скролинга профиля

This commit is contained in:
kazachilo 2025-03-26 17:08:38 +03:00
parent 6fcb3ce0f1
commit a366be55c7
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.5);
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: flex-start; align-items: center;
z-index: 1000; z-index: 1000;
} }
@ -19,7 +19,6 @@
max-width: 400px; max-width: 400px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: var(--spacing-medium); margin: var(--spacing-medium);
margin-top: 15vh;
max-height: 80vh; max-height: 80vh;
overflow-y: auto; overflow-y: auto;
position: relative; position: relative;

View File

@ -68,7 +68,9 @@
@supports (-webkit-touch-callout: none) { @supports (-webkit-touch-callout: none) {
/* Стили только для iOS устройств */ /* Стили только для iOS устройств */
.tokenPacks { .tokenPacks {
padding: 0 16px; /* Увеличенные отступы для iOS */ padding: 0 24px; /* Увеличить боковые отступы */
padding-bottom: 100px; /* Добавить отступ снизу */
-webkit-overflow-scrolling: touch; /* Улучшить скроллинг */
} }
} }