From 9b5b11e7e46930f8688bf9d84264215c100bb6f1 Mon Sep 17 00:00:00 2001 From: Alena Batitskaia Date: Thu, 8 Aug 2024 10:41:03 +0100 Subject: [PATCH] =?UTF-8?q?=D0=A1=D1=82=D0=B8=D0=BB=D0=B8=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=BC=D0=BE=D0=B1=D0=B8=D0=BB=D1=8C=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/blocks/changelog.css | 42 ++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/src/styles/blocks/changelog.css b/src/styles/blocks/changelog.css index ae9ab873..1db2ad56 100644 --- a/src/styles/blocks/changelog.css +++ b/src/styles/blocks/changelog.css @@ -61,7 +61,7 @@ display: flex; justify-content: space-between; gap: 18px; - margin-block-start: 46px; + margin-block-start: 45px; } .changelog-footer::before { @@ -94,10 +94,21 @@ .changelog-item__title { max-inline-size: 55%; + font-size: 18px; + } + + .changelog-item__author::before { + border-block-end-width: 3px; + } + + .changelog-item__time, + .changelog-item__author { + font-size: 22px; } .changelog-footer { flex-direction: column; + font-size: 18px; } .changelog-footer::before { @@ -110,7 +121,36 @@ } @media (width <= 768px) { + .changelog-item { + flex-direction: column; + justify-content: start; + } + + .changelog-item__time { + inline-size: fit-content; + justify-content: start; + } + + .changelog-item__title { + max-inline-size: 90dvw; + font-size: 20px; + } + + .changelog-item__author { + flex: 0 0 auto; + } + .changelog-item__author::before { display: none; } + + .changelog-item__time, + .changelog-item__author { + font-size: 20px; + } + + .changelog-footer { + margin-block-start: 30px; + font-size: 17px; + } }