Fix mouseover CSS for inline SVG on About page

This commit is contained in:
wiz 2022-02-20 20:11:31 +09:00
parent ce41e1e65d
commit 3b7d36e9e9
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -9,7 +9,7 @@
border-radius: 50%; border-radius: 50%;
margin: 25px; margin: 25px;
line-height: 32px; line-height: 32px;
} }
.intro { .intro {
margin: 25px auto 30px; margin: 25px auto 30px;
@ -41,7 +41,7 @@
} }
.alliances, .alliances,
.enterprise-sponsor, .enterprise-sponsor,
.community-integrations-sponsor, .community-integrations-sponsor,
.maintainers { .maintainers {
margin-top: 68px; margin-top: 68px;
@ -58,7 +58,7 @@
.wrapper { .wrapper {
margin: 20px auto; margin: 20px auto;
} }
.btn-primary { .btn-primary {
max-width: 250px; max-width: 250px;
margin: auto; margin: auto;
height: 45px; height: 45px;
@ -68,7 +68,7 @@
.alliances { .alliances {
margin-bottom: 100px; margin-bottom: 100px;
a { a {
&:nth-child(3) { &:nth-child(3) {
position: relative; position: relative;
top: 10px; top: 10px;
@ -88,17 +88,17 @@
margin: 50px 30px 0px; margin: 50px 30px 0px;
} }
} }
.liquid { .liquid {
top: 7px; top: 7px;
position: relative; position: relative;
} }
.copa { .copa {
height: auto; height: auto;
top: 23px; top: 23px;
position: relative; position: relative;
width: 300px; width: 300px;
} }
.bisq { .bisq {
top: 3px; top: 3px;
position: relative; position: relative;
} }
@ -115,11 +115,11 @@
display: inline-block; display: inline-block;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
img { img, svg {
transform: scale(1.1); transform: scale(1.1);
} }
} }
img, span{ img, svg, span {
display: block; display: block;
transition: 150ms all; transition: 150ms all;
} }