Skip to content

Commit

Permalink
Increased Limit on the direct hire job description
Browse files Browse the repository at this point in the history
  • Loading branch information
promiseonuoha committed Sep 30, 2024
1 parent 7030ca6 commit dd29703
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/(guest)/direct-hire/components/input-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const InputGroup = ({
const [focus, setFocus] = useState(false)

const handleTextAreaChange = e => {
onChange(e.target.value.slice(0, 300))
onChange(e.target.value.slice(0, 600))
}

return (
Expand Down Expand Up @@ -48,7 +48,7 @@ const InputGroup = ({
className="outline-none large:leading-[32px] leading-[28px] large:text-base text-sm font-normal text-tremor-brand-boulder950 placeholder:text-[#B0B0B0] bg-transparent border-none w-full h-[85%]"
/>
<p className="text-xs text-[#B0B0B0] font-normal">
{value?.length}/300
{value?.length}/600
</p>
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion app/(guest)/jobs/components/date-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const DateTimeDropdown = ({ onChange, dateTime, placeholder }) => {
style={{
boxShadow: '0px 20px 417px 0px #00000012',
}}
className="space-y-4 origin-top px-5 py-6 absolute w-full max-w-md top-[60px] tablet:top-[52px] border rounded-3xl bg-white text-base focus:outline-none sm:text-sm">
className="space-y-4 z-40 origin-top px-5 py-6 absolute w-full max-w-md top-[60px] tablet:top-[52px] border rounded-3xl bg-white text-base focus:outline-none sm:text-sm">
{/* Date Selector */}
<div>
<label className="block text-tremor-brand-boulder500 font-medium text-sm mb-2.5">
Expand Down
2 changes: 1 addition & 1 deletion app/(guest)/jobs/components/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function DropdownMenu({ value, onChange, list, placeholder }) {
initial={{ opacity: 0.5, scale: 0.93 }}
exit={{ opacity: 0, scale: 1 }}
animate={{ opacity: 1, scale: 1 }}
className="rounded-3xl bg-white top-[60px] border flex flex-col w-full tablet:top-[52px] absolute origin-top text-base shadow-lg focus:outline-none sm:text-sm py-3"
className="rounded-3xl z-40 bg-white top-[60px] border flex flex-col w-full tablet:top-[52px] absolute origin-top text-base shadow-lg focus:outline-none sm:text-sm py-3"
style={{
boxShadow: '0px 20px 417px 0px #00000012',
}}>
Expand Down

0 comments on commit dd29703

Please sign in to comment.