fix unseen link (#696)

This commit is contained in:
maxiloud 2024-03-18 10:16:34 +01:00 committed by Slim Amamou
parent 56358b491a
commit b2f4f1a768

View file

@ -65,12 +65,14 @@
border-radius: 50%;
object-fit: cover;
}
.img-avatar {
display: inline-block;
background-size: cover;
background-position: center center;
border-radius: 50%
}
.bg-secondary-subtle {
background: $gray-100;
}
@ -87,7 +89,7 @@
width: fit-content;
}
.white-space-normal{
.white-space-normal {
white-space: normal;
}
@ -95,6 +97,7 @@
> input {
border-right: 0;
}
&-button {
border: 1px solid #ced4da;
border-left: none;
@ -105,6 +108,34 @@
border-top-right-radius: var(--bs-border-radius-sm) !important;
}
}
p > strong {
> a {
color: $blue-500;;
position: relative;
text-decoration: none;
transition: .5s;
&:after {
background-color: $blue-500;
content: "";
height: 2px;
left: 0;
position: absolute;
top: 100%;
transform: scaleX(0);
transform-origin: right;
transition: transform .5s;
width: 100%;
}
&:hover:after {
transform: scaleX(1);
transform-origin: left;
}
}
}
@media screen and (max-width: 992px) {
.img-funding {
width: 100%;