diff --git a/assets/styles/_utilities.scss b/assets/styles/_utilities.scss index 247a372..9aab182 100644 --- a/assets/styles/_utilities.scss +++ b/assets/styles/_utilities.scss @@ -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%;