🎨 Add new icon size variable

This commit is contained in:
Miguel Avila 2021-08-10 19:55:57 -05:00
parent 0838beaaca
commit 764b93951b

10
app.css
View File

@ -9,6 +9,8 @@
--fss: 3vh; /* Greetings and Weather widger */ --fss: 3vh; /* Greetings and Weather widger */
--fses: 2vh; /* Links List */ --fses: 2vh; /* Links List */
--iconsize: 3vh;
/* Light theme */ /* Light theme */
--accent: #61b0f1; /* Hover color */ --accent: #61b0f1; /* Hover color */
--bg: #f5f5f5; /* Background color */ --bg: #f5f5f5; /* Background color */
@ -202,8 +204,8 @@ body {
} }
.buttonLink__icon { .buttonLink__icon {
width: 3vh; width: var(--iconsize);
height: 3vh; height: var(--iconsize);
color: var(--fg); color: var(--fg);
} }
@ -256,8 +258,8 @@ body {
margin-top: 3vh; margin-top: 3vh;
margin-bottom: 2vh; margin-bottom: 2vh;
color: var(--fg); color: var(--fg);
width: 3vh; width: var(--iconsize);
height: 3vh; height: var(--iconsize);
} }
.list__link { .list__link {
text-decoration: none; text-decoration: none;