This commit is contained in:
@@ -205,10 +205,10 @@ export default function ResumeSettingsModal({
|
||||
>
|
||||
<button
|
||||
role="tab"
|
||||
class={`px-4 py-2 rounded-full text-sm font-medium transition-all duration-200 ${
|
||||
class={`px-4 py-2 rounded-full text-sm transition-all duration-200 ${
|
||||
activeTab === "upload"
|
||||
? "bg-primary text-primary-content"
|
||||
: "text-base-content/70 hover:text-base-content hover:bg-base-200"
|
||||
? "bg-primary font-bold text-primary-content shadow-sm"
|
||||
: "text-base-content/70 hover:text-base-content font-bold hover:bg-base-200"
|
||||
}`}
|
||||
onClick={() => setActiveTab("upload")}
|
||||
>
|
||||
@@ -216,10 +216,10 @@ export default function ResumeSettingsModal({
|
||||
</button>
|
||||
<button
|
||||
role="tab"
|
||||
class={`px-4 py-2 rounded-full text-sm font-medium transition-all duration-200 ${
|
||||
class={`px-4 py-2 rounded-full text-sm font-bold transition-all duration-200 ${
|
||||
activeTab === "edit"
|
||||
? "bg-primary text-primary-content"
|
||||
: "text-base-content/70 hover:text-base-content hover:bg-base-200"
|
||||
? "bg-primary text-primary-content shadow-sm"
|
||||
: "text-base-content/70 hover:text-base-content font-bold hover:bg-base-200"
|
||||
}`}
|
||||
onClick={() => setActiveTab("edit")}
|
||||
>
|
||||
@@ -244,12 +244,13 @@ export default function ResumeSettingsModal({
|
||||
onDragLeave={handleDragLeave}
|
||||
>
|
||||
<div class="space-y-4">
|
||||
<div class="text-4xl">📄</div>
|
||||
<div>
|
||||
<p class="text-lg font-medium">
|
||||
Drop your TOML file here
|
||||
</p>
|
||||
<p class="text-base-content/70">or click to browse</p>
|
||||
<p class="text-base-content/70">
|
||||
or click below to browse
|
||||
</p>
|
||||
</div>
|
||||
<input
|
||||
type="file"
|
||||
|
||||
Reference in New Issue
Block a user