Initial commit

This commit is contained in:
2026-07-13 09:25:40 +07:00
parent c08ff54676
commit bccfb156d7
1938 changed files with 641646 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
/* ============================================
MissionItem Component Styles
============================================ */
.mission-item {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
border-bottom: 1px solid #2d2d30;
transition: background-color 0.15s ease;
gap: 8px;
}
.mission-item:hover {
background-color: #252526;
}
.mission-item:last-child {
border-bottom: none;
}
.mission-info {
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
min-width: 0;
}
.mission-name {
font-size: 12px;
font-weight: 500;
color: #cccccc;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex-shrink: 0;
}
.mission-parameter-count {
font-size: 10px;
color: #858585;
flex-shrink: 0;
}