styles.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  1. :root {
  2. color-scheme: light;
  3. font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  4. --paper: #f4f0e7;
  5. --paper-deep: #e9e2d5;
  6. --paper-soft: rgba(255, 252, 244, 0.72);
  7. --ink: #20231f;
  8. --muted: #686d61;
  9. --line: rgba(82, 83, 72, 0.2);
  10. --line-strong: rgba(70, 77, 63, 0.34);
  11. --moss: #6c7666;
  12. --moss-deep: #3f4d3f;
  13. --clay: #8b7762;
  14. --ash: #d8d2c5;
  15. --charcoal: #2f302c;
  16. --danger: #8c3b32;
  17. --warning: #a27b3f;
  18. --shadow: 0 8px 18px rgba(38, 35, 28, 0.06);
  19. }
  20. * {
  21. box-sizing: border-box;
  22. }
  23. html {
  24. min-height: 100%;
  25. }
  26. body {
  27. margin: 0;
  28. min-height: 100vh;
  29. color: var(--ink);
  30. background:
  31. linear-gradient(90deg, rgba(76, 87, 69, 0.04) 1px, transparent 1px),
  32. linear-gradient(rgba(76, 87, 69, 0.035) 1px, transparent 1px),
  33. linear-gradient(135deg, #f7f3eb 0%, #ece6d9 52%, #f3eee4 100%);
  34. background-size: 44px 44px, 44px 44px, 100% 100%;
  35. overflow-x: hidden;
  36. }
  37. body::before {
  38. content: "";
  39. position: fixed;
  40. inset: 0;
  41. pointer-events: none;
  42. z-index: 0;
  43. background:
  44. repeating-linear-gradient(11deg, rgba(72, 68, 58, 0.025) 0 1px, transparent 1px 7px),
  45. repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
  46. opacity: 0.7;
  47. }
  48. button,
  49. textarea {
  50. font: inherit;
  51. }
  52. button {
  53. transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
  54. }
  55. button:hover,
  56. button:focus-visible {
  57. border-color: var(--moss-deep);
  58. outline: none;
  59. }
  60. .paper-grain {
  61. position: fixed;
  62. inset: 0;
  63. z-index: 0;
  64. pointer-events: none;
  65. background-image:
  66. radial-gradient(circle at 12% 18%, rgba(61, 64, 55, 0.035) 0 1px, transparent 1px),
  67. radial-gradient(circle at 74% 28%, rgba(61, 64, 55, 0.028) 0 1px, transparent 1px),
  68. radial-gradient(circle at 42% 80%, rgba(61, 64, 55, 0.026) 0 1px, transparent 1px);
  69. background-size: 28px 31px, 39px 43px, 47px 53px;
  70. mix-blend-mode: multiply;
  71. }
  72. .top-nav {
  73. position: sticky;
  74. top: 0;
  75. z-index: 20;
  76. min-height: 74px;
  77. padding: 14px 28px;
  78. display: grid;
  79. grid-template-columns: minmax(230px, auto) 1fr minmax(210px, auto);
  80. align-items: center;
  81. gap: 22px;
  82. border-bottom: 1px solid var(--line);
  83. background: rgba(246, 241, 231, 0.9);
  84. backdrop-filter: blur(10px);
  85. }
  86. .brand {
  87. display: flex;
  88. gap: 13px;
  89. align-items: center;
  90. min-width: 0;
  91. }
  92. .brand img {
  93. width: 42px;
  94. height: 42px;
  95. border-radius: 6px;
  96. object-fit: cover;
  97. border: 1px solid rgba(58, 63, 53, 0.18);
  98. filter: saturate(0.72) contrast(0.96);
  99. }
  100. .brand strong {
  101. display: block;
  102. font-size: 18px;
  103. line-height: 1.2;
  104. font-weight: 700;
  105. letter-spacing: 0;
  106. }
  107. .brand span,
  108. .session-card span {
  109. display: block;
  110. margin-top: 4px;
  111. color: var(--muted);
  112. font-size: 12px;
  113. font-weight: 500;
  114. letter-spacing: 0;
  115. }
  116. .nav {
  117. display: flex;
  118. justify-content: center;
  119. gap: 10px;
  120. }
  121. .nav-item {
  122. min-width: 68px;
  123. border: 1px solid transparent;
  124. border-radius: 999px;
  125. padding: 8px 17px;
  126. color: var(--charcoal);
  127. background: transparent;
  128. text-align: center;
  129. cursor: pointer;
  130. font-weight: 600;
  131. }
  132. .nav-item.active {
  133. border-color: var(--line-strong);
  134. background: rgba(255, 252, 244, 0.58);
  135. }
  136. .nav-item:hover {
  137. background: rgba(255, 252, 244, 0.72);
  138. }
  139. .session-card {
  140. justify-self: end;
  141. min-width: 210px;
  142. padding: 10px 12px;
  143. border: 1px solid var(--line);
  144. border-radius: 8px;
  145. display: flex;
  146. align-items: center;
  147. gap: 10px;
  148. background: rgba(255, 252, 244, 0.58);
  149. }
  150. .session-card strong {
  151. font-size: 15px;
  152. font-weight: 700;
  153. }
  154. .status-dot {
  155. width: 10px;
  156. height: 10px;
  157. border-radius: 999px;
  158. background: var(--warning);
  159. flex: 0 0 auto;
  160. box-shadow: 0 0 0 4px rgba(162, 123, 63, 0.1);
  161. }
  162. .status-dot.ok {
  163. background: var(--moss);
  164. box-shadow: 0 0 0 4px rgba(108, 118, 102, 0.12);
  165. }
  166. .status-dot.error {
  167. background: var(--danger);
  168. box-shadow: 0 0 0 4px rgba(140, 59, 50, 0.12);
  169. }
  170. .shell {
  171. position: relative;
  172. z-index: 1;
  173. width: min(1460px, calc(100% - 48px));
  174. margin: 0 auto;
  175. padding: 24px 0 32px;
  176. }
  177. .hero {
  178. min-height: 176px;
  179. display: grid;
  180. grid-template-columns: minmax(0, 1fr) 280px;
  181. gap: 16px;
  182. align-items: stretch;
  183. margin-bottom: 16px;
  184. }
  185. .hero-copy,
  186. .hero-panel,
  187. .feature-card,
  188. .chat-card,
  189. .panel {
  190. border: 1px solid var(--line);
  191. background: var(--paper-soft);
  192. box-shadow: var(--shadow);
  193. }
  194. .hero-copy {
  195. position: relative;
  196. overflow: hidden;
  197. border-radius: 8px;
  198. padding: 28px 32px;
  199. }
  200. .hero-copy::after {
  201. content: "";
  202. position: absolute;
  203. right: 28px;
  204. bottom: 24px;
  205. width: 190px;
  206. height: 1px;
  207. background: linear-gradient(90deg, transparent, rgba(63, 77, 63, 0.42), transparent);
  208. }
  209. .eyebrow {
  210. display: inline-flex;
  211. align-items: center;
  212. min-height: 28px;
  213. padding: 3px 10px;
  214. border: 1px solid rgba(139, 119, 98, 0.45);
  215. border-radius: 3px;
  216. background: rgba(244, 240, 231, 0.72);
  217. color: var(--clay);
  218. font-size: 13px;
  219. font-weight: 600;
  220. }
  221. .hero h1 {
  222. margin: 18px 0 10px;
  223. max-width: 860px;
  224. font-size: 36px;
  225. line-height: 1.18;
  226. font-weight: 700;
  227. letter-spacing: 0;
  228. color: var(--charcoal);
  229. }
  230. .hero p {
  231. margin: 0;
  232. max-width: 760px;
  233. color: #44483f;
  234. font-size: 15px;
  235. line-height: 1.85;
  236. }
  237. .hero-actions {
  238. display: flex;
  239. flex-wrap: wrap;
  240. align-items: center;
  241. gap: 12px;
  242. margin-top: 22px;
  243. }
  244. .chrome-button,
  245. .system-pill {
  246. border-radius: 3px;
  247. font-weight: 600;
  248. }
  249. .chrome-button {
  250. min-height: 38px;
  251. padding: 0 18px;
  252. color: #f7f3eb;
  253. border: 1px solid var(--moss-deep);
  254. background: var(--moss-deep);
  255. cursor: pointer;
  256. }
  257. .chrome-button:hover,
  258. .chrome-button:focus-visible {
  259. background: #354236;
  260. }
  261. .system-pill {
  262. display: inline-flex;
  263. align-items: center;
  264. min-height: 38px;
  265. padding: 0 14px;
  266. border: 1px solid var(--line);
  267. color: var(--muted);
  268. background: rgba(255, 252, 244, 0.52);
  269. font-size: 13px;
  270. }
  271. .hero-panel {
  272. position: relative;
  273. overflow: hidden;
  274. border-radius: 8px;
  275. padding: 24px;
  276. display: grid;
  277. grid-template-rows: 1fr auto auto;
  278. align-items: center;
  279. justify-items: center;
  280. background:
  281. linear-gradient(150deg, rgba(255, 252, 244, 0.78), rgba(224, 219, 205, 0.58)),
  282. var(--paper-deep);
  283. }
  284. .seal-mark {
  285. width: 104px;
  286. height: 104px;
  287. border-radius: 7px;
  288. display: grid;
  289. place-items: center;
  290. border: 1px solid rgba(83, 69, 55, 0.24);
  291. background: rgba(255, 252, 244, 0.56);
  292. transform: rotate(-1.5deg);
  293. }
  294. .seal-mark img {
  295. width: 76px;
  296. height: 76px;
  297. border-radius: 50%;
  298. object-fit: cover;
  299. filter: saturate(0.68) contrast(0.94);
  300. }
  301. .brush-line {
  302. width: 84%;
  303. height: 2px;
  304. margin-top: 14px;
  305. background: linear-gradient(90deg, transparent, rgba(63, 77, 63, 0.46), rgba(139, 119, 98, 0.34), transparent);
  306. opacity: 0.8;
  307. }
  308. .mini-display {
  309. margin-top: 14px;
  310. width: 100%;
  311. padding: 12px 14px;
  312. border-top: 1px solid rgba(82, 83, 72, 0.16);
  313. color: var(--charcoal);
  314. }
  315. .mini-display span,
  316. .mini-display strong {
  317. display: block;
  318. text-align: center;
  319. }
  320. .mini-display span {
  321. color: var(--muted);
  322. font-size: 13px;
  323. }
  324. .mini-display strong {
  325. margin-top: 4px;
  326. font-size: 22px;
  327. font-weight: 700;
  328. }
  329. .feature-strip {
  330. display: grid;
  331. grid-template-columns: repeat(4, minmax(0, 1fr));
  332. gap: 12px;
  333. margin-bottom: 16px;
  334. }
  335. .feature-card {
  336. position: relative;
  337. border-radius: 8px;
  338. padding: 18px 18px 16px;
  339. min-height: 104px;
  340. }
  341. .feature-card::before {
  342. content: "";
  343. position: absolute;
  344. left: 18px;
  345. top: 0;
  346. width: 42px;
  347. height: 2px;
  348. background: rgba(108, 118, 102, 0.5);
  349. }
  350. .feature-card strong {
  351. display: block;
  352. margin-top: 4px;
  353. font-size: 18px;
  354. font-weight: 700;
  355. }
  356. .feature-card p {
  357. margin: 8px 0 0;
  358. color: var(--muted);
  359. font-size: 13px;
  360. line-height: 1.65;
  361. }
  362. .workspace {
  363. display: grid;
  364. grid-template-columns: minmax(620px, 1fr) 360px;
  365. gap: 16px;
  366. align-items: stretch;
  367. }
  368. .chat-card,
  369. .panel {
  370. border-radius: 8px;
  371. }
  372. .chat-card {
  373. min-height: calc(100vh - 366px);
  374. display: grid;
  375. grid-template-rows: auto minmax(360px, 1fr) auto;
  376. overflow: hidden;
  377. }
  378. .window-bar {
  379. min-height: 46px;
  380. padding: 0 18px;
  381. display: flex;
  382. align-items: center;
  383. gap: 10px;
  384. border-bottom: 1px solid var(--line);
  385. background: rgba(236, 230, 217, 0.64);
  386. }
  387. .window-bar span {
  388. width: 12px;
  389. height: 12px;
  390. border-radius: 2px;
  391. border: 1px solid rgba(139, 119, 98, 0.55);
  392. background: rgba(139, 119, 98, 0.16);
  393. transform: rotate(4deg);
  394. }
  395. .window-bar strong {
  396. color: var(--muted);
  397. font-size: 13px;
  398. font-weight: 600;
  399. letter-spacing: 0.02em;
  400. }
  401. .messages {
  402. padding: 22px;
  403. overflow: auto;
  404. scroll-behavior: smooth;
  405. }
  406. .message-row {
  407. display: grid;
  408. grid-template-columns: 38px minmax(0, 1fr);
  409. gap: 12px;
  410. margin-bottom: 18px;
  411. }
  412. .message-row.user {
  413. grid-template-columns: minmax(0, 1fr) 38px;
  414. }
  415. .avatar {
  416. width: 38px;
  417. height: 38px;
  418. border-radius: 7px;
  419. background: rgba(255, 252, 244, 0.62);
  420. color: var(--moss-deep);
  421. display: grid;
  422. place-items: center;
  423. font-size: 14px;
  424. font-weight: 700;
  425. overflow: hidden;
  426. border: 1px solid var(--line);
  427. }
  428. .avatar img {
  429. width: 100%;
  430. height: 100%;
  431. object-fit: cover;
  432. filter: saturate(0.7) contrast(0.95);
  433. }
  434. .bubble {
  435. width: min(100%, 820px);
  436. border-radius: 8px;
  437. padding: 15px 17px;
  438. background: rgba(255, 252, 244, 0.62);
  439. border: 1px solid rgba(82, 83, 72, 0.14);
  440. line-height: 1.78;
  441. white-space: pre-wrap;
  442. color: var(--ink);
  443. }
  444. .message-row.user .bubble {
  445. justify-self: end;
  446. background: rgba(232, 237, 225, 0.72);
  447. border-color: rgba(108, 118, 102, 0.24);
  448. }
  449. .message-row.user .avatar {
  450. grid-column: 2;
  451. grid-row: 1;
  452. }
  453. .message-row.user .bubble {
  454. grid-column: 1;
  455. grid-row: 1;
  456. }
  457. .typing {
  458. display: inline-flex;
  459. align-items: center;
  460. gap: 6px;
  461. white-space: nowrap;
  462. font-weight: 600;
  463. color: var(--moss-deep);
  464. }
  465. .typing i {
  466. width: 5px;
  467. height: 5px;
  468. border-radius: 50%;
  469. background: var(--moss);
  470. animation: pulse 1.3s infinite ease-in-out;
  471. }
  472. .typing i:nth-child(2) {
  473. animation-delay: 0.16s;
  474. }
  475. .typing i:nth-child(3) {
  476. animation-delay: 0.32s;
  477. }
  478. @keyframes pulse {
  479. 0%,
  480. 80%,
  481. 100% {
  482. opacity: 0.25;
  483. }
  484. 40% {
  485. opacity: 1;
  486. }
  487. }
  488. .table-card {
  489. margin-top: 14px;
  490. border: 1px solid var(--line);
  491. border-radius: 8px;
  492. background: rgba(255, 252, 244, 0.76);
  493. overflow: hidden;
  494. }
  495. .table-head {
  496. display: flex;
  497. justify-content: space-between;
  498. align-items: center;
  499. gap: 10px;
  500. padding: 11px 13px;
  501. background: rgba(232, 226, 213, 0.58);
  502. border-bottom: 1px solid var(--line);
  503. }
  504. .table-head strong {
  505. font-size: 14px;
  506. font-weight: 700;
  507. }
  508. .table-head button {
  509. border: 1px solid var(--line-strong);
  510. background: rgba(255, 252, 244, 0.58);
  511. color: var(--moss-deep);
  512. border-radius: 3px;
  513. padding: 6px 11px;
  514. cursor: pointer;
  515. white-space: nowrap;
  516. font-weight: 600;
  517. }
  518. .table-wrap {
  519. overflow: auto;
  520. max-height: 430px;
  521. }
  522. table {
  523. width: 100%;
  524. min-width: 700px;
  525. border-collapse: collapse;
  526. font-size: 13px;
  527. }
  528. th,
  529. td {
  530. border-bottom: 1px solid rgba(82, 83, 72, 0.14);
  531. padding: 10px 12px;
  532. text-align: left;
  533. vertical-align: top;
  534. word-break: break-word;
  535. }
  536. th {
  537. position: sticky;
  538. top: 0;
  539. z-index: 1;
  540. background: #eee8dc;
  541. color: var(--charcoal);
  542. font-weight: 700;
  543. }
  544. tbody tr:nth-child(even) {
  545. background: rgba(237, 232, 221, 0.42);
  546. }
  547. .composer {
  548. margin: 0 22px 22px;
  549. border: 1px solid var(--line);
  550. border-radius: 8px;
  551. padding: 11px;
  552. background: rgba(255, 252, 244, 0.68);
  553. }
  554. .composer:focus-within {
  555. border-color: var(--moss);
  556. }
  557. .composer textarea {
  558. width: 100%;
  559. min-height: 76px;
  560. max-height: 190px;
  561. border: 0;
  562. outline: 0;
  563. resize: vertical;
  564. color: var(--ink);
  565. background: transparent;
  566. }
  567. .composer textarea::placeholder {
  568. color: #75786e;
  569. }
  570. .composer-footer {
  571. display: flex;
  572. justify-content: space-between;
  573. align-items: center;
  574. color: var(--muted);
  575. font-size: 12px;
  576. }
  577. .send-button {
  578. border: 1px solid var(--moss-deep);
  579. border-radius: 4px;
  580. min-width: 96px;
  581. height: 40px;
  582. padding: 0 16px;
  583. background: var(--moss-deep);
  584. color: #f7f3eb;
  585. display: inline-flex;
  586. align-items: center;
  587. justify-content: center;
  588. gap: 8px;
  589. cursor: pointer;
  590. font-weight: 600;
  591. }
  592. .send-button:hover,
  593. .send-button:focus-visible {
  594. background: #354236;
  595. }
  596. .send-button:disabled {
  597. cursor: not-allowed;
  598. opacity: 0.64;
  599. }
  600. .send-icon,
  601. .send-text {
  602. white-space: nowrap;
  603. }
  604. .inspector {
  605. display: grid;
  606. align-content: start;
  607. gap: 14px;
  608. max-height: calc(100vh - 210px);
  609. overflow: auto;
  610. }
  611. .panel {
  612. padding: 16px;
  613. }
  614. .panel-title {
  615. display: flex;
  616. align-items: center;
  617. justify-content: space-between;
  618. gap: 12px;
  619. margin-bottom: 12px;
  620. }
  621. .panel h2 {
  622. margin: 0;
  623. font-size: 18px;
  624. font-weight: 700;
  625. }
  626. .player-screen {
  627. margin-bottom: 14px;
  628. border-radius: 7px;
  629. padding: 14px;
  630. background: rgba(47, 48, 44, 0.94);
  631. color: #f4f0e7;
  632. border: 1px solid rgba(47, 48, 44, 0.14);
  633. }
  634. .player-screen span,
  635. .player-screen strong {
  636. display: block;
  637. }
  638. .player-screen span {
  639. color: #c8c0b0;
  640. font-size: 12px;
  641. font-weight: 500;
  642. }
  643. .player-screen strong {
  644. margin-top: 5px;
  645. font-size: 18px;
  646. font-weight: 700;
  647. }
  648. .kv {
  649. display: grid;
  650. gap: 12px;
  651. margin: 0;
  652. }
  653. .kv div {
  654. display: grid;
  655. grid-template-columns: 86px minmax(0, 1fr);
  656. gap: 8px;
  657. }
  658. .kv dt {
  659. color: var(--muted);
  660. font-weight: 500;
  661. }
  662. .kv dd {
  663. margin: 0;
  664. font-weight: 700;
  665. word-break: break-all;
  666. }
  667. .tool-list,
  668. .trace-list {
  669. display: grid;
  670. gap: 9px;
  671. }
  672. .tool-item,
  673. .trace-item {
  674. border: 1px solid rgba(82, 83, 72, 0.14);
  675. border-radius: 7px;
  676. padding: 11px;
  677. background: rgba(255, 252, 244, 0.52);
  678. }
  679. .tool-item strong,
  680. .trace-item strong {
  681. display: block;
  682. font-size: 14px;
  683. font-weight: 700;
  684. }
  685. .tool-item span,
  686. .trace-item span {
  687. display: block;
  688. color: var(--muted);
  689. font-size: 12px;
  690. margin-top: 4px;
  691. word-break: break-word;
  692. line-height: 1.5;
  693. }
  694. .phase-error strong {
  695. color: var(--danger);
  696. }
  697. @media (max-width: 1180px) {
  698. .top-nav {
  699. grid-template-columns: 1fr;
  700. }
  701. .session-card {
  702. justify-self: stretch;
  703. }
  704. .nav {
  705. justify-content: flex-start;
  706. overflow-x: auto;
  707. }
  708. .hero,
  709. .workspace {
  710. grid-template-columns: 1fr;
  711. }
  712. .hero-panel {
  713. min-height: 180px;
  714. }
  715. .feature-strip {
  716. grid-template-columns: repeat(2, minmax(0, 1fr));
  717. }
  718. .inspector {
  719. max-height: none;
  720. }
  721. }
  722. @media (max-width: 720px) {
  723. .top-nav {
  724. padding: 12px;
  725. gap: 12px;
  726. }
  727. .shell {
  728. width: min(100% - 20px, 1460px);
  729. padding-top: 12px;
  730. }
  731. .hero-copy {
  732. padding: 18px;
  733. }
  734. .hero h1 {
  735. font-size: 30px;
  736. }
  737. .hero p {
  738. font-size: 14px;
  739. line-height: 1.7;
  740. }
  741. .hero-actions {
  742. margin-top: 14px;
  743. }
  744. .hero-panel {
  745. display: none;
  746. }
  747. .feature-strip {
  748. grid-template-columns: repeat(2, minmax(0, 1fr));
  749. gap: 10px;
  750. }
  751. .feature-card {
  752. min-height: auto;
  753. padding: 14px;
  754. }
  755. .feature-card strong {
  756. font-size: 16px;
  757. }
  758. .feature-card p {
  759. font-size: 12px;
  760. }
  761. .chat-card {
  762. min-height: 620px;
  763. }
  764. .message-row,
  765. .message-row.user {
  766. grid-template-columns: 1fr;
  767. }
  768. .message-row .avatar,
  769. .message-row.user .avatar {
  770. display: none;
  771. }
  772. .message-row.user .bubble,
  773. .message-row.user .avatar {
  774. grid-column: auto;
  775. grid-row: auto;
  776. }
  777. }
  778. @media (max-width: 480px) {
  779. .feature-strip {
  780. grid-template-columns: 1fr;
  781. }
  782. }