bercovasile's picture
butonul de confitmate trebuie sa fie stiki
970b44c verified
raw
history blame contribute delete
955 Bytes
.terms-container {
max-height: 60vh;
-webkit-overflow-scrolling: touch;
}
/* Custom scrollbar for terms container */
.terms-container::-webkit-scrollbar {
width: 6px;
}
.terms-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.terms-container::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
.terms-container::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Sticky continue button */
#end-of-terms {
position: sticky;
bottom: 0;
background: white;
padding-top: 1rem;
padding-bottom: 1rem;
border-top: 1px solid #e5e7eb;
}
/* Animation for the continue button when enabled */
#continue-btn:enabled {
background-color: #4f46e5;
cursor: pointer;
}
#continue-btn:enabled:hover {
background-color: #4338ca;
transform: translateY(-1px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}