Skip to content

Commit a4fd5c4

Browse files
Copilot0xrinegade
andcommitted
Complete comprehensive UI overhaul with external script conflict resolution: Fix theme system, enhance responsive design, resolve code quality issues, and eliminate wallet extension console errors
Co-authored-by: 0xrinegade <[email protected]>
1 parent fadfd3d commit a4fd5c4

File tree

9 files changed

+2240
-136
lines changed

9 files changed

+2240
-136
lines changed

src/components/OfferList.js

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -932,20 +932,19 @@ const OfferList = ({ type = 'buy', onStartGuidedWorkflow}) => {
932932
}
933933
934934
.guided-workflow-button {
935-
background-color: var(--ascii-neutral-700);
936-
color: var(--ascii-white);
937-
border: 1px solid var(--ascii-neutral-800);
938-
padding: 8px 16px;
939-
border-radius: 0;
935+
background-color: var(--card-bg);
936+
color: var(--text-primary);
937+
border: var(--border-width, 1px) solid var(--border-color);
938+
padding: var(--spacing-2, 8px) var(--spacing-4, 16px);
939+
border-radius: var(--border-radius, 0px);
940940
cursor: pointer;
941-
font-size: 0.9rem;
941+
font-size: var(--font-size-sm, 14px);
942942
display: flex;
943943
align-items: center;
944-
gap: 8px;
945-
font-family: 'Courier New', Courier, monospace;
944+
gap: var(--spacing-2, 8px);
946945
text-transform: uppercase;
947-
transition: all var(--transition-normal);
948-
box-shadow: var(--shadow-sm);
946+
transition: all var(--transition-normal, 0.2s);
947+
box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.1));
949948
}
950949
951950
.guided-workflow-button::before {
@@ -955,17 +954,17 @@ const OfferList = ({ type = 'buy', onStartGuidedWorkflow}) => {
955954
justify-content: center;
956955
width: 18px;
957956
height: 18px;
958-
background-color: var(--ascii-neutral-500);
959-
border: 1px solid var(--ascii-neutral-600);
960-
border-radius: 0;
961-
font-size: 0.8rem;
962-
font-weight: bold;
957+
background-color: var(--secondary-bg);
958+
border: var(--border-width, 1px) solid var(--border-color);
959+
border-radius: var(--border-radius, 0px);
960+
font-size: var(--font-size-xs, 12px);
961+
font-weight: var(--font-weight-bold, 700);
963962
}
964963
965964
.guided-workflow-button:hover {
966-
background-color: var(--ascii-neutral-600);
965+
background-color: var(--secondary-bg);
967966
transform: translateY(-1px);
968-
box-shadow: var(--shadow-md);
967+
box-shadow: var(--shadow-md, 0 2px 4px rgba(0,0,0,0.15));
969968
}
970969
971970
.view-deal-button {

0 commit comments

Comments
 (0)