Skip to content

Commit ebd1c5f

Browse files
authored
Merge pull request #22 from boostcampwm-snu-2026-1/dev
1D 시간 진화 결과 시각화 및 로직 고도화
2 parents b19d095 + 4bfd9ad commit ebd1c5f

10 files changed

Lines changed: 1260 additions & 78 deletions

File tree

src/component/workspace/AnalysisControl/AnalysisControl.css

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.analysis-control-body {
1717
min-height: 0;
1818
display: grid;
19-
grid-template-rows: auto minmax(0, 1fr);
19+
grid-template-rows: auto auto minmax(0, 1fr);
2020
gap: 7px;
2121
padding: 8px 10px 9px;
2222
overflow: hidden;
@@ -409,6 +409,55 @@
409409
background: #2f6f8f;
410410
}
411411

412+
.evolution-speed-control {
413+
min-width: 0;
414+
min-height: 27px;
415+
display: grid;
416+
grid-template-columns: 42px minmax(0, 1fr);
417+
align-items: center;
418+
gap: 7px;
419+
padding: 2px 7px;
420+
border: 1px solid #d5dde4;
421+
border-radius: 8px;
422+
background: #fbfcfd;
423+
}
424+
425+
.evolution-speed-control span {
426+
color: #64717d;
427+
font-size: 0.68rem;
428+
font-weight: 800;
429+
line-height: 1;
430+
text-transform: uppercase;
431+
white-space: nowrap;
432+
}
433+
434+
.evolution-speed-options {
435+
min-width: 0;
436+
display: grid;
437+
grid-template-columns: repeat(5, minmax(0, 1fr));
438+
gap: 4px;
439+
}
440+
441+
.evolution-speed-options button {
442+
min-width: 0;
443+
min-height: 21px;
444+
padding: 2px 3px;
445+
border: 1px solid #cbd3da;
446+
border-radius: 6px;
447+
color: #4f5d68;
448+
background: #ffffff;
449+
font-size: 0.66rem;
450+
font-weight: 850;
451+
cursor: pointer;
452+
white-space: nowrap;
453+
}
454+
455+
.evolution-speed-options button.active {
456+
border-color: #2f6f8f;
457+
color: #ffffff;
458+
background: #2f6f8f;
459+
}
460+
412461
@media (max-width: 860px) {
413462
.evolution-editor.is-2d,
414463
.evolution-editor {

0 commit comments

Comments
 (0)