fix unseen link (#696)
This commit is contained in:
parent
56358b491a
commit
b2f4f1a768
1 changed files with 32 additions and 1 deletions
|
|
@ -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%;
|
||||
|
|
|
|||
Loading…
Reference in a new issue