Fix text overflow

This commit is contained in:
Sara
2023-09-26 12:54:37 +02:00
parent c4a071c043
commit 0370b3935e
3 changed files with 8 additions and 8 deletions

View File

@@ -19,7 +19,7 @@ const ShareLink = () => {
return (
<div
className="p-2 md:p-4 mt-8 md:mt-4 rounded"
className="p-2 md:p-4 rounded"
style={{ background: "rgba(96, 165, 250, 0.2)" }}
>
<p className="text-sm mb-2">
@@ -33,7 +33,7 @@ const ShareLink = () => {
readOnly
value={currentURL}
ref={inputRef}
className="border rounded p-2 flex-grow mr-2 text-sm bg-slate-100 outline-slate-400"
className="border rounded-lg md:rounded-xl p-2 flex-grow mr-2 text-sm bg-slate-100 outline-slate-400"
/>
<button
onClick={handleCopyClick}