This commit is contained in:
malvm 2026-08-05 10:00:46 +04:00
parent ec017268bf
commit 3640dff6d7
3 changed files with 18 additions and 7 deletions

View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#f97316" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/>
<polyline points="3.27 6.96 12 12.01 20.73 6.96"/>
<line x1="12" y1="22.08" x2="12" y2="12"/>
</svg>

After

Width:  |  Height:  |  Size: 397 B

View file

@ -7,8 +7,8 @@
<!-- Google Fonts --> <!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"> <link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
<link rel="stylesheet" href="/static/style.css?v=2"> <link rel="stylesheet" href="/static/style.css?v=3">
</head> </head>
<body> <body>
<header class="app-header"> <header class="app-header">

View file

@ -140,7 +140,7 @@ body {
.workspace-view { .workspace-view {
display: none; display: none;
grid-template-columns: 380px 1fr; grid-template-columns: 420px 1fr;
gap: 1.5rem; gap: 1.5rem;
flex: 1; flex: 1;
height: 100%; height: 100%;
@ -343,20 +343,26 @@ body {
border-radius: 8px; border-radius: 8px;
padding: 0.25rem; padding: 0.25rem;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
gap: 0.25rem; gap: 0.2rem;
overflow-x: auto;
} }
.tab-btn { .tab-btn {
flex: 1; flex: 1 1 0;
min-width: 0;
background: none; background: none;
border: none; border: none;
border-radius: 6px; border-radius: 6px;
color: var(--text-muted); color: var(--text-muted);
font-family: var(--font-sans); font-family: var(--font-sans);
font-size: 0.9rem; font-size: 0.82rem;
font-weight: 600; font-weight: 600;
padding: 0.6rem; padding: 0.55rem 0.25rem;
cursor: pointer; cursor: pointer;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: var(--transition-fast); transition: var(--transition-fast);
} }