From 764b93951bba36eb66a58e674f637de26c92d3e5 Mon Sep 17 00:00:00 2001 From: Miguel Avila Date: Tue, 10 Aug 2021 19:55:57 -0500 Subject: [PATCH] :art: Add new icon size variable --- app.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app.css b/app.css index 3e62603..f4dd55b 100644 --- a/app.css +++ b/app.css @@ -9,6 +9,8 @@ --fss: 3vh; /* Greetings and Weather widger */ --fses: 2vh; /* Links List */ + --iconsize: 3vh; + /* Light theme */ --accent: #61b0f1; /* Hover color */ --bg: #f5f5f5; /* Background color */ @@ -202,8 +204,8 @@ body { } .buttonLink__icon { - width: 3vh; - height: 3vh; + width: var(--iconsize); + height: var(--iconsize); color: var(--fg); } @@ -256,8 +258,8 @@ body { margin-top: 3vh; margin-bottom: 2vh; color: var(--fg); - width: 3vh; - height: 3vh; + width: var(--iconsize); + height: var(--iconsize); } .list__link { text-decoration: none;