From ebb9db2e3e341c0849a06c67bafa2cdefe64ecac Mon Sep 17 00:00:00 2001 From: Gabriel Cozma Date: Sun, 6 Oct 2024 21:46:31 +0300 Subject: [PATCH] cleanup: small changes to `mark` element --- CHANGELOG.md | 2 ++ src/styles/_common.scss | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b82a11c..f2d8b6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,6 +84,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Move the details of the article to the bottom of the article's card +- Small changes to `mark` element by making smaller and more padding + --- ### Development diff --git a/src/styles/_common.scss b/src/styles/_common.scss index d733f5e..072374e 100644 --- a/src/styles/_common.scss +++ b/src/styles/_common.scss @@ -132,7 +132,8 @@ mark { margin: 0; border-radius: var(--rounded-sm); background-color: var(--color-background-second); - padding: 0.125rem 0.375rem 0.1875rem 0.375rem; + padding: 0.125rem 0.375rem; + font-size: 0.875rem; color: var(--color-accent); }