chore: Монорепо с общими пакетами

This commit is contained in:
2026-03-04 16:31:57 +03:00
parent 8f2c799235
commit 915c56351b
420 changed files with 13403 additions and 7071 deletions

View File

@@ -0,0 +1,90 @@
:root {
--Text-Primary: #0f172a;
--Text-Secondary: #334155;
--Text-Tertiary: #64748b;
--Text-Quaternary: #94a3b8;
--System-HashtagsInPost: #2563eb;
--Default-White: #ffffff;
--Default-Dark: #020617;
--System-Alert: #dc2626;
--Accent-Malahit: #16a34a;
--System-Attantion: #d97706;
}
body {
font-family: Inter, "Segoe UI", sans-serif;
}
.sb-show-main {
padding: 24px;
}
.tach-story-surface {
min-width: 320px;
max-width: 920px;
padding: 20px;
border-radius: 14px;
border: 1px solid #dbe1ea;
background: #ffffff;
}
.tach-story-stack {
display: flex;
flex-direction: column;
gap: 12px;
}
.tach-story-grid {
display: grid;
gap: 10px;
}
.tach-story-grid--colors {
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.tach-story-row {
display: grid;
gap: 12px;
grid-template-columns: 220px minmax(0, 1fr);
align-items: center;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid #e2e8f0;
background: #fff;
}
.tach-story-label {
color: #475569;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 12px;
}
.tach-story-token-list {
margin: 0;
padding-left: 18px;
color: #334155;
}
.tach-story-table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.tach-story-table th,
.tach-story-table td {
padding: 8px 10px;
border: 1px solid #e2e8f0;
text-align: left;
}
.tach-story-table thead {
background: #f8fafc;
}
@media (max-width: 720px) {
.tach-story-row {
grid-template-columns: 1fr;
}
}