mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 22:04:58 +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.
46 lines
806 B
SCSS
46 lines
806 B
SCSS
@import "variables";
|
|
|
|
.workflow-editor textarea,
|
|
.prompt-editor,
|
|
.translations-layout textarea {
|
|
width: 100%;
|
|
border-radius: $radius;
|
|
border: 1px solid $border-color;
|
|
background: #02040a;
|
|
color: $text;
|
|
padding: 1rem;
|
|
font-family: "JetBrains Mono", monospace;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.workflow-actions,
|
|
.translations-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.translations-actions button {
|
|
background: none;
|
|
border: 1px solid $border-color;
|
|
border-radius: $radius;
|
|
color: $text;
|
|
padding: 0.45rem 0.85rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.language-form {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.language-form input {
|
|
flex: 1;
|
|
border-radius: $radius;
|
|
border: 1px solid $border-color;
|
|
padding: 0.5rem;
|
|
background: #02040a;
|
|
color: $text;
|
|
}
|