Changes before error encountered

Co-authored-by: pdf114514 <57948770+pdf114514@users.noreply.github.com>
Agent-Logs-Url: https://github.com/pdf114514/CarReservation/sessions/a42d4e36-a3cf-4ff7-b1cb-f076e601b1b8
This commit is contained in:
copilot-swe-agent[bot]
2026-03-22 04:25:00 +00:00
parent 0bd5efde2c
commit 761c7f1971
7 changed files with 107 additions and 24 deletions

View File

@@ -175,6 +175,14 @@
flex-shrink: 0;
}
.carLabelContent {
display: flex;
flex-direction: column;
gap: 3px;
min-width: 0;
flex: 1;
}
.carName {
font-size: 13px;
font-weight: 600;
@@ -182,15 +190,46 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
min-width: 0;
}
.carIcons {
.carBadges {
display: flex;
gap: 2px;
font-size: 14px;
flex-shrink: 0;
gap: 4px;
flex-wrap: nowrap;
}
.badgeEtc {
background: #7c3aed;
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 1px 5px;
border-radius: 4px;
white-space: nowrap;
letter-spacing: 0.03em;
}
.badgeStudless {
background: #0ea5e9;
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 1px 5px;
border-radius: 4px;
white-space: nowrap;
letter-spacing: 0.03em;
}
.badgeWarn {
background: #d97706;
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 1px 5px;
border-radius: 4px;
white-space: nowrap;
letter-spacing: 0.03em;
cursor: default;
}
/* Cell area */