mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
- Implement core components: CLI argument parsing, environment loading, GitHub service creation, and logging configuration. - Add support for OpenAI client setup and model resolution. - Develop SDLC context loader from GitHub and repository files. - Implement workflow context and engine builders. - Introduce major workflow packages: `game_tick_loop` and `contextual_iterative_loop`. - Update localization files with new package descriptions and labels. - Streamline web navigation by loading items from a dedicated JSON file.
54 lines
853 B
SCSS
54 lines
853 B
SCSS
@import "variables";
|
|
|
|
.dashboard-panel {
|
|
@include panel;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.dashboard-panel__strategy {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.dashboard-panel .field-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.primary {
|
|
border: none;
|
|
background: linear-gradient(135deg, $accent, $accent-strong);
|
|
color: white;
|
|
border-radius: $radius;
|
|
padding: 0.75rem 1.2rem;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-text {
|
|
color: $muted;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.status-feedback {
|
|
color: $accent;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.log-output {
|
|
background: #05060a;
|
|
border: 1px solid $border-color;
|
|
border-radius: $radius;
|
|
padding: 1rem;
|
|
max-height: 240px;
|
|
overflow: auto;
|
|
font-size: 0.8rem;
|
|
line-height: 1.4;
|
|
color: $text;
|
|
}
|