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%;
|
border-radius: 50%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.img-avatar {
|
.img-avatar {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
border-radius: 50%
|
border-radius: 50%
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-secondary-subtle {
|
.bg-secondary-subtle {
|
||||||
background: $gray-100;
|
background: $gray-100;
|
||||||
}
|
}
|
||||||
|
|
@ -95,6 +97,7 @@
|
||||||
> input {
|
> input {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-button {
|
&-button {
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
|
@ -105,6 +108,34 @@
|
||||||
border-top-right-radius: var(--bs-border-radius-sm) !important;
|
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) {
|
@media screen and (max-width: 992px) {
|
||||||
.img-funding {
|
.img-funding {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue