reduce stroke on icons and delete background color

feature/oscar-theme
Segundo Fdez 2022-03-08 22:46:16 +01:00
parent b565b5799d
commit a3eeac4d9d
2 changed files with 4 additions and 4 deletions

View File

@ -587,10 +587,10 @@ i, em {
margin: 0 auto; margin: 0 auto;
} }
.social svg > * { .social svg > * {
fill: var(--background-main); fill: none;
stroke: var(--color-link); stroke: var(--color-link);
transition: all ease-in-out 250ms; transition: all ease-in-out 250ms;
stroke-width: 2px; stroke-width: 1px;
} }
/* POST LIST */ /* POST LIST */
.posts-container { .posts-container {

View File

@ -108,10 +108,10 @@
vertical-align: middle; vertical-align: middle;
margin: 0 auto; margin: 0 auto;
> * { > * {
fill: var(--background-main); fill: none;
stroke: var(--color-link); stroke: var(--color-link);
transition: all ease-in-out 250ms; transition: all ease-in-out 250ms;
stroke-width: 2px; stroke-width: 1px;
} }
} }
} }