Skip to content

Commit 5846c86

Browse files
committed
style(ui): tighten spacing and button styles
1 parent 94213b0 commit 5846c86

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/pages/CandidateDetail.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ export default function CandidateDetail() {
347347
</div>
348348
{showApplication && (
349349
<div className="card-body">
350-
<div className="content-gap-lg" />
350+
<div className="content-gap" />
351351
<p><strong>姓名:</strong> {user.application.realName}</p>
352352
<p><strong>手机号:</strong> {user.application.phone}</p>
353353
<p><strong>性别:</strong> {user.application.gender === "male" ? "男" : "女"}</p>
@@ -371,7 +371,7 @@ export default function CandidateDetail() {
371371
</div>
372372
{showComments && (
373373
<>
374-
<div className="content-gap-lg" />
374+
<div className="content-gap" />
375375
{comments.length > 0 ? (
376376
comments.map((comment, index) => (
377377
<div key={comment.id}>

src/styles.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,7 @@ button.link-button {
677677
padding: 0;
678678
box-shadow: none;
679679
font-weight: 600;
680+
border: none;
680681
}
681682

682683
.link-button {
@@ -708,6 +709,7 @@ button:disabled {
708709
appearance: none;
709710
-webkit-appearance: none;
710711
-moz-appearance: none;
712+
color: #B3B7BD;
711713
}
712714

713715
.row {

0 commit comments

Comments
 (0)