From 61f9fefef815bba2103b4d04b4afbc2e44c769ba Mon Sep 17 00:00:00 2001 From: Fatih Solhan Date: Thu, 13 Feb 2025 12:21:38 +0300 Subject: [PATCH] feat: add Chrome extension link to header navigation --- _layouts/default.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/_layouts/default.html b/_layouts/default.html index 3d75417..25c76c2 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1400,6 +1400,26 @@ .modal-content { /* white-space: pre-wrap; */ } + + .chrome-ext-link { + display: flex; + align-items: center; + gap: 4px; + color: var(--accent-color); + font-size: 0.9rem; + opacity: 0.8; + text-decoration: none; + transition: opacity 0.2s ease; + } + + .chrome-ext-link:hover { + opacity: 1; + } + + .chrome-ext-link svg { + width: 20px; + height: 20px; + } {% include head-custom.html %} @@ -1455,6 +1475,15 @@ ... + + + + + + + + +