docs: update logo hover style

This commit is contained in:
Philipp Kühn
2021-04-18 22:55:03 +02:00
parent d860220f4d
commit 20f6480694

View File

@@ -44,10 +44,10 @@ export default {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
background-color: rgba($colorBlack, 0.03); background-color: rgba($colorBlack, 0.03);
border: 3px solid transparent;
border-radius: 0.75rem; border-radius: 0.75rem;
padding: 1.5rem; padding: 1.5rem;
margin-bottom: 1rem; margin-bottom: 1rem;
transition: box-shadow 0.2s ease;
&__image ::v-deep svg { &__image ::v-deep svg {
width: 100%; width: 100%;
@@ -60,7 +60,7 @@ export default {
} }
&:hover { &:hover {
border-color: $colorBlack; box-shadow: 0 0 0 0.25rem rgba($colorBlack, 0.03);
} }
} }
</style> </style>