fix: improve DEX page mobile UI — smaller back button, taller chart, compact swap card

- Back to Home button: smaller padding/font on mobile, pinned to corner
- PriceChart: increase height to 280px, stack header vertically on mobile
- TokenSwap: reduce padding/gaps/fonts on mobile, fix double-colon in balance text
This commit is contained in:
2026-02-24 23:48:17 +03:00
parent 385288dae3
commit 25754d2224
3 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -554,7 +554,7 @@ const AppLayout: React.FC = () => {
{(showDEX || showProposalWizard || showDelegation || showForum || showModeration || showTreasury || showStaking || showMultiSig || showEducation || showP2P) && (
<div className="fixed bottom-8 right-8 z-50">
<div className="fixed bottom-4 right-4 sm:bottom-8 sm:right-8 z-50">
<button
onClick={() => {
setShowDEX(false);
@@ -568,7 +568,7 @@ const AppLayout: React.FC = () => {
setShowEducation(false);
setShowP2P(false);
}}
className="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-full shadow-lg flex items-center gap-2 transition-all"
className="bg-green-600 hover:bg-green-700 text-white px-3 py-2 sm:px-6 sm:py-3 text-sm sm:text-base rounded-full shadow-lg flex items-center gap-2 transition-all"
>
{`${t('common.backToHome')}`}
</button>
+12 -12
View File
@@ -867,7 +867,7 @@ const TokenSwap = () => {
}
return (
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div className="grid grid-cols-1 lg:grid-cols-3 gap-4 sm:gap-6">
{/* Kurdistan Sun Animation Overlay during swap (only after confirm dialog is closed) */}
{isSwapping && !showConfirm && (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/80 backdrop-blur-sm">
@@ -890,9 +890,9 @@ const TokenSwap = () => {
/>
)}
<Card className="p-6">
<div className="flex justify-between items-center mb-6">
<h2 className="text-2xl font-bold">{t('tokenSwap.tokenSwap')}</h2>
<Card className="p-3 sm:p-6">
<div className="flex justify-between items-center mb-3 sm:mb-6">
<h2 className="text-lg sm:text-2xl font-bold">{t('tokenSwap.tokenSwap')}</h2>
<Button variant="ghost" size="icon" onClick={() => setShowSettings(true)}>
<Settings className="h-5 w-5" />
</Button>
@@ -908,11 +908,11 @@ const TokenSwap = () => {
)}
<div className="space-y-4">
<div className="bg-gray-800 border border-gray-700 rounded-lg p-4">
<div className="bg-gray-800 border border-gray-700 rounded-lg p-3 sm:p-4">
<div className="flex justify-between mb-2">
<span className="text-sm text-gray-400">{t('tokenSwap.from')}</span>
<span className="text-sm text-gray-400">
{t('common.balance')}: {fromBalance} {getTokenDisplayName(fromToken)}
{t('common.balance')} {fromBalance} {getTokenDisplayName(fromToken)}
</span>
</div>
<div className="flex gap-3">
@@ -921,7 +921,7 @@ const TokenSwap = () => {
value={fromAmount}
onChange={(e) => setFromAmount(e.target.value)}
placeholder="Amount"
className="text-2xl font-bold border-0 bg-transparent text-white placeholder:text-gray-500 placeholder:opacity-50"
className="text-lg sm:text-2xl font-bold border-0 bg-transparent text-white placeholder:text-gray-500 placeholder:opacity-50"
disabled={!selectedAccount}
/>
<Select
@@ -936,7 +936,7 @@ const TokenSwap = () => {
}}
disabled={!selectedAccount}
>
<SelectTrigger className="min-w-[140px] border-gray-600 hover:border-gray-500">
<SelectTrigger className="min-w-[100px] sm:min-w-[140px] border-gray-600 hover:border-gray-500">
<SelectValue>
{(() => {
const token = AVAILABLE_TOKENS.find(t => t.symbol === fromToken);
@@ -979,11 +979,11 @@ const TokenSwap = () => {
</Button>
</div>
<div className="bg-gray-800 border border-gray-700 rounded-lg p-4">
<div className="bg-gray-800 border border-gray-700 rounded-lg p-3 sm:p-4">
<div className="flex justify-between mb-2">
<span className="text-sm text-gray-400">{t('tokenSwap.to')}</span>
<span className="text-sm text-gray-400">
{t('common.balance')}: {toBalance} {getTokenDisplayName(toToken)}
{t('common.balance')} {toBalance} {getTokenDisplayName(toToken)}
</span>
</div>
<div className="flex gap-3">
@@ -992,7 +992,7 @@ const TokenSwap = () => {
value={toAmount}
readOnly
placeholder="Amount"
className="text-2xl font-bold border-0 bg-transparent text-white placeholder:text-gray-500 placeholder:opacity-50"
className="text-lg sm:text-2xl font-bold border-0 bg-transparent text-white placeholder:text-gray-500 placeholder:opacity-50"
/>
<Select
value={toToken}
@@ -1006,7 +1006,7 @@ const TokenSwap = () => {
}}
disabled={!selectedAccount}
>
<SelectTrigger className="min-w-[140px] border-gray-600 hover:border-gray-500">
<SelectTrigger className="min-w-[100px] sm:min-w-[140px] border-gray-600 hover:border-gray-500">
<SelectValue>
{(() => {
const token = AVAILABLE_TOKENS.find(t => t.symbol === toToken);
+3 -3
View File
@@ -89,13 +89,13 @@ export const PriceChart: React.FC<PriceChartProps> = ({ fromToken, toToken, curr
return (
<Card className="p-4 bg-gray-900 border-gray-800">
<div className="flex justify-between items-center mb-4">
<div className="flex flex-col sm:flex-row sm:justify-between sm:items-center gap-2 mb-4">
<div>
<div className="text-sm text-gray-400 mb-1">
{t('priceChart.label', { from: getDisplayName(fromToken), to: getDisplayName(toToken) })}
</div>
<div className="flex items-center gap-3">
<span className="text-2xl font-bold text-white">
<span className="text-xl sm:text-2xl font-bold text-white">
${currentPrice.toFixed(4)}
</span>
<div className={`flex items-center gap-1 text-sm font-semibold ${
@@ -117,7 +117,7 @@ export const PriceChart: React.FC<PriceChartProps> = ({ fromToken, toToken, curr
</Tabs>
</div>
<ResponsiveContainer width="100%" height={200}>
<ResponsiveContainer width="100%" height={280}>
<AreaChart data={chartData}>
<defs>
<linearGradient id={`gradient-${isPositive ? 'green' : 'red'}`} x1="0" y1="0" x2="0" y2="1">