Yocapp's picture
🐳 05/05 - 09:59 - CONTEXTE :Je développe l’écran “Accueil chauffeur - ÉTAT A” (nouveau chauffeur) pour TIE.L’écran est déjà globalement bon, mais la section :👉 “3 étapes pour bien démarrer”n’est pas
65b6dc5 verified
Raw
History Blame Contribute Delete
726 Bytes
html, body {
overscroll-behavior: none;
background: #0b0b0f;
}
body {
font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
padding-bottom: env(safe-area-inset-bottom);
}
* {
-webkit-tap-highlight-color: transparent;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
::selection {
background: rgba(16, 185, 129, 0.3);
color: white;
}
@keyframes subtle-ping {
0% { transform: scale(1); opacity: 0.35; }
75%, 100% { transform: scale(1.6); opacity: 0; }
}
.animate-subtle-ping {
animation: subtle-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}