From e77a8a0c7a89cc383496c39463abe157f2d86626 Mon Sep 17 00:00:00 2001 From: yamanerkam Date: Thu, 18 Jun 2026 13:58:23 +0300 Subject: [PATCH] fix(docs-infra): align the page title with its edit action The page title row (`.docs-page-title`) relied on the default flex alignment, so the edit icon next to the title did not line up with the title text. Add `align-items: baseline` so the icon sits on the title's baseline. --- .../components/viewers/docs-viewer/docs-viewer.component.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/adev/shared-docs/components/viewers/docs-viewer/docs-viewer.component.scss b/adev/shared-docs/components/viewers/docs-viewer/docs-viewer.component.scss index 750efd753f0..9873a9dd48e 100644 --- a/adev/shared-docs/components/viewers/docs-viewer/docs-viewer.component.scss +++ b/adev/shared-docs/components/viewers/docs-viewer/docs-viewer.component.scss @@ -132,6 +132,7 @@ .docs-page-title { display: flex; justify-content: space-between; + align-items: baseline; h1 { margin-block: 0;