Skip to content

Commit 0e94035

Browse files
mariuspruvotclaude
andcommitted
fix(web): left-align session row cells
Button elements default to text-align: center, which was centering the PR title and chips inside their grid cells. Add text-left so content aligns with the header labels and the DURATION/RAN right-aligned columns keep their explicit text-right. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent ca78042 commit 0e94035

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/src/features/dashboard/InstallationDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export default function InstallationDetail() {
218218
<button
219219
key={session.id}
220220
onClick={() => navigate(`/installations/${installationId}/sessions/${session.id}`)}
221-
className={`group w-full grid items-center px-3 lg:px-4 py-2 lg:py-2.5 text-[12px] lg:text-[13px] transition-colors cursor-pointer hover:bg-card-hi ${
221+
className={`group w-full grid items-center text-left px-3 lg:px-4 py-2 lg:py-2.5 text-[12px] lg:text-[13px] transition-colors cursor-pointer hover:bg-card-hi ${
222222
idx < sessions.length - 1 ? 'border-b border-rule' : ''
223223
}`}
224224
style={{ gridTemplateColumns: COL_TEMPLATE }}

0 commit comments

Comments
 (0)