Skip to content

Commit b563653

Browse files
style: hide vertical scrollbar while keeping scroll functionality
Added CSS utility to hide the vertical scrollbar in form containers while preserving scroll behavior for better UI aesthetics.
1 parent 9f1b85b commit b563653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/auth/RegisterForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default function RegisterForm({ onSuccess, onBack, theme }) {
141141
exit={{ opacity: 0, x: -100 }}
142142
className="w-full max-w-md"
143143
>
144-
<div className="bg-white/10 backdrop-blur-xl rounded-3xl p-8 border border-white/20 shadow-2xl overflow-y-auto max-h-[90vh]">
144+
<div className="bg-white/10 backdrop-blur-xl rounded-3xl p-8 border border-white/20 shadow-2xl overflow-y-auto max-h-[90vh] scrollbar-hide">
145145
<div className="text-center mb-8">
146146
<button
147147
onClick={onBack}

0 commit comments

Comments
 (0)