Files
rohitg00__agentmemory/website/components/Compare.module.css
Rohit Ghumare a2a2af936e feat: MCP version negotiation, translation sync, skills, mobile fix (#1211)
* fix: negotiate MCP protocolVersion instead of hardcoding 2024-11-05

* docs: sync 11 README translations with v0.9.29 English rework

* feat: memory-discipline and lesson skills for proactive memory use

* fix: bump remaining skill-count claims to 17

* fix: mobile install-box overflow and stale compare counts

* chore: regenerate website meta snapshot

* fix: honest compare benchmarks and scrollable mobile table

* docs: refine lesson skill wording and context block copy

* fix: compare table reads generated meta, focusable scroll region

* fix: render each lesson as a single context line
2026-08-15 23:05:55 +01:00

80 lines
1.5 KiB
CSS

.compare {
padding: 96px 0;
border-top: 1px solid var(--hairline);
border-bottom: 1px solid var(--hairline);
}
.table {
max-width: 1100px;
margin: 0 auto;
padding: 0 40px;
}
.table:focus-visible {
outline: 2px solid var(--border-ghost);
outline-offset: 2px;
}
.table > .row:first-child {
border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.table > .row:last-child {
border-radius: 0 0 var(--radius-card) var(--radius-card);
border-bottom: 1px solid var(--hairline);
}
.row {
display: grid;
grid-template-columns: 1.4fr 1.3fr 1fr 1fr 1fr;
gap: 16px;
padding: 16px 24px;
border: 1px solid var(--hairline);
border-bottom: none;
align-items: center;
font-size: 14px;
overflow-wrap: anywhere;
}
.row > span {
color: var(--body);
}
.row > span:first-child {
font-family: var(--font-mono);
font-size: 11.5px;
letter-spacing: 1.2px;
text-transform: uppercase;
color: var(--mute);
}
.head {
background: var(--canvas-soft);
}
.head span {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1.2px;
text-transform: uppercase;
color: var(--mute) !important;
font-weight: 400 !important;
}
.head .mine {
color: var(--ink) !important;
}
.mine {
color: var(--ink) !important;
font-weight: 500 !important;
}
@media (max-width: 1024px) {
.table {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.row {
min-width: 720px;
gap: 12px;
}
}
@media (max-width: 640px) {
.table {
padding: 0 20px;
}
.row {
padding: 14px 16px;
font-size: 13px;
}
}