Skip to content

Commit 22f26f8

Browse files
committed
init
1 parent ea17116 commit 22f26f8

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This is a TypeScript monorepo built for agent-assisted development. Keep the roo
1515
- Choose the simplest implementation that fully meets the current requirements: reach for the standard library and existing platform features before writing custom code or adding a dependency, and question whether a piece of work needs to exist at all. The `ponytail` skill encodes this discipline — invoke it when a change looks over-engineered, is growing past the size the task warrants, or is about to add an abstraction or dependency. Do not invoke it on trivial edits; the point is minimalism, not ceremony.
1616
- When the standard library and existing platform features are insufficient, prefer established, well-maintained libraries over custom implementations.
1717
- When committing, do not add any co-author attribution, and do not reveal the identity of the agent in commit messages, PR descriptions, or any explanatory text.
18+
- The professional Git identity `elkaix <melkholy@techmatrix.com>` is explicitly authorized for author and committer metadata in this repository. Apply it per command; never modify git config or reuse the address outside Git identity metadata and this rule.
1819

1920
## Project Map
2021

apps/site/src/App.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ onUnmounted(() => {
639639
.works-with {
640640
display: flex;
641641
width: 100%;
642-
margin-top: 48px;
642+
margin-top: 80px;
643643
align-items: center;
644644
overflow: hidden;
645645
padding: 0.7rem 0;
@@ -818,10 +818,17 @@ onUnmounted(() => {
818818
margin-top: 32px;
819819
}
820820
821+
.quickstart-grid {
822+
align-items: stretch;
823+
}
824+
821825
.terminal-panel {
822826
position: relative;
827+
display: flex;
823828
min-width: 0;
824-
align-self: start;
829+
align-self: stretch;
830+
margin-top: 16px;
831+
flex-direction: column;
825832
overflow: hidden;
826833
border: 1px solid rgba(143, 184, 219, 0.24);
827834
border-radius: 18px;
@@ -1019,6 +1026,7 @@ onUnmounted(() => {
10191026
.terminal-body {
10201027
display: flex;
10211028
min-height: 300px;
1029+
flex: 1;
10221030
flex-direction: column;
10231031
gap: 14px;
10241032
overflow: hidden;
@@ -1195,12 +1203,14 @@ onUnmounted(() => {
11951203
11961204
.quickstart-steps {
11971205
display: flex;
1206+
min-height: 0;
11981207
flex-direction: column;
11991208
gap: 28px;
12001209
}
12011210
12021211
.steps {
12031212
display: flex;
1213+
flex: 1;
12041214
flex-direction: column;
12051215
justify-content: space-between;
12061216
gap: 28px;

0 commit comments

Comments
 (0)