feat: update style

This commit is contained in:
Bingjian
2024-11-08 16:53:02 +08:00
parent 098a4520e9
commit 67845c1f7c
3 changed files with 8 additions and 3 deletions

View File

@@ -79,13 +79,13 @@ export default function Detail() {
<input
type="number"
placeholder="0.0"
className="h-[45px] flex-1 font-bold outline-none placeholder:text-black"
className="h-[45px] flex-1 border-none text-[32px] font-bold outline-none placeholder:text-black"
/>
<span className="ml-4 leading-[140%] text-black">BBN</span>
</div>
<div className="mt-6 flex cursor-pointer items-center justify-center rounded-[13px] border-[3px] border-solid border-black bg-[#FFCA05] px-[24px] py-[16px] text-[32px] font-[900] uppercase shadow-[0px_4px_4px_0px_rgba(0,0,0,0.25)]">
{activeTab === TabType.BUY ? "BUY" : "SELL"} Token
<ButtonIcon />
<ButtonIcon className="ml-2" />
</div>
</div>
</div>

View File

@@ -18,7 +18,7 @@ export default function ConnectWallet() {
placeholder="Type token symbol, address to find your launchpad..."
/>
</div>
<div className="rounded-[73px] border-4 border-solid border-[#FFCA05] bg-[#C5005D] p-[24px] text-[30px] font-bold leading-[30px] text-[#FFCA05]">
<div className="rounded-[73px] border-4 border-solid border-[#FFCA05] bg-[#C5005D] p-[32px] text-[32px] font-bold leading-[100%] text-[#FFCA05]">
{isConnected ? (
<div className="flex items-center gap-2">
<WalletIcon />

View File

@@ -17,3 +17,8 @@ input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input:focus {
outline: none !important;
box-shadow: none !important;
}