agent-ecosystem/landing/assets/styles/main.scss
iliya e6e89d4ebc fix(tests): improve messageId generation for legacy inbox rows
- Enhanced tests to ensure consistent messageId generation for legacy inbox rows lacking a messageId.
- Updated test descriptions for better clarity regarding the new messageId handling.
- Adjusted test expectations to align with the updated behavior of relaying legacy inbox rows with generated messageIds.
2026-03-23 16:31:37 +02:00

76 lines
1,000 B
SCSS

:root {
color-scheme: light dark;
}
body {
margin: 0;
font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
background: rgb(var(--v-theme-background));
color: rgb(var(--v-theme-on-background));
}
.page {
position: relative;
overflow: clip;
}
.section {
padding: 64px 0;
}
.section-title {
margin-bottom: 24px;
}
.hero {
padding-top: 96px;
}
.anchor-offset {
scroll-margin-top: 96px;
}
/* Monospace accent font for technical elements */
.mono {
font-family: "JetBrains Mono", "Fira Code", monospace;
}
@media (max-width: 960px) {
.page {
padding: 32px 0 64px;
}
.section {
padding: 48px 0;
}
.hero {
padding-top: 72px;
}
.anchor-offset {
scroll-margin-top: 72px;
}
}
@media (max-width: 600px) {
.page {
padding: 24px 0 48px;
}
.section {
padding: 40px 0;
}
.hero {
padding-top: 64px;
}
.anchor-offset {
scroll-margin-top: 64px;
}
}
.app-header {
backdrop-filter: blur(10px);
}