Skip to content

Commit b7dfe41

Browse files
Copilotlarp0
andcommitted
Fix offer-list-container hardcoded white background colors in mobile responsive CSS
Co-authored-by: larp0 <[email protected]>
1 parent d9b1ec1 commit b7dfe41

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

src/styles/responsive/component-mobile.css

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/* OfferCreation component mobile enhancements */
44
.offer-creation-container {
55
padding: 20px;
6-
border-radius: 8px;
7-
background-color: white;
8-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
6+
border-radius: 0; /* ASCII theme uses square corners */
7+
background-color: var(--color-background-alt);
8+
border: 1px solid var(--ascii-neutral-400);
99
margin-bottom: 24px;
1010
}
1111

@@ -59,9 +59,9 @@
5959
/* OfferList component mobile enhancements */
6060
.offer-list-container {
6161
padding: 20px 20px 20px 0; /* Removed left padding to fix alignment */
62-
border-radius: 8px;
63-
background-color: white;
64-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
62+
border-radius: 0; /* ASCII theme uses square corners */
63+
background-color: var(--color-background-alt);
64+
border: 1px solid var(--ascii-neutral-400);
6565
margin-bottom: 24px;
6666
}
6767

@@ -166,9 +166,9 @@
166166
/* DisputeResolution component mobile enhancements */
167167
.dispute-resolution-container {
168168
padding: 20px;
169-
border-radius: 8px;
170-
background-color: white;
171-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
169+
border-radius: 0; /* ASCII theme uses square corners */
170+
background-color: var(--color-background-alt);
171+
border: 1px solid var(--ascii-neutral-400);
172172
margin-bottom: 24px;
173173
}
174174

@@ -319,9 +319,9 @@
319319
/* UserProfile component mobile enhancements */
320320
.user-profile-container {
321321
padding: 20px;
322-
border-radius: 8px;
323-
background-color: white;
324-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
322+
border-radius: 0; /* ASCII theme uses square corners */
323+
background-color: var(--color-background-alt);
324+
border: 1px solid var(--ascii-neutral-400);
325325
margin-bottom: 24px;
326326
}
327327

@@ -421,9 +421,9 @@
421421
padding: 12px 16px;
422422
position: sticky;
423423
top: 0;
424-
background-color: white;
424+
background-color: var(--color-background);
425+
border-bottom: 1px solid var(--ascii-neutral-400);
425426
z-index: 10;
426-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
427427
}
428428

429429
.header-content {
@@ -465,8 +465,8 @@
465465
top: 60px;
466466
left: 0;
467467
width: 100%;
468-
background-color: white;
469-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
468+
background-color: var(--color-background);
469+
border-bottom: 1px solid var(--ascii-neutral-400);
470470
z-index: 20;
471471
}
472472

@@ -511,8 +511,8 @@
511511
bottom: 0;
512512
left: 0;
513513
width: 100%;
514-
background-color: white;
515-
box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
514+
background-color: var(--color-background);
515+
border-top: 1px solid var(--ascii-neutral-400);
516516
z-index: 10;
517517
}
518518

0 commit comments

Comments
 (0)