Files
play-life/play-life-web/src/index.css
poignatov 1f423e1ed3
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 47s
Исправление двойного скролла (3.14.1)
2026-01-14 17:55:10 +03:00

52 lines
947 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
body {
margin: 0;
padding: 0;
height: 100%;
height: 100dvh;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-overflow-scrolling: touch;
}
#root {
height: 100vh;
height: 100dvh; /* Dynamic viewport height для мобильных устройств */
overflow: hidden;
background: #f3f4f6;
background-attachment: fixed;
display: flex;
flex-direction: column;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fadeIn 0.5s ease-out;
}