From 6b864d5ab370c3c76c224698b7c4f968c8aa61e3 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 8 Aug 2023 01:26:49 +0100 Subject: [PATCH] style: scale blog card on hover --- src/scss/app.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/scss/app.scss b/src/scss/app.scss index da9c260..fe5e64c 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -151,6 +151,14 @@ article { } } +.blog-card { + transition: all 0.2s ease-in-out; + + &:hover { + transform: scale(1.05); + } +} + pre code span.line { counter-increment: line;