123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .app-link {
- p {
- margin-bottom: 30px;
- }
-
- .btn {
- min-width: 150px;
- }
- }
-
- .user-info {
- margin: 15px 0px;
-
- span {
- margin-bottom: 5px;
- display : inline-block;
- }
- }
-
-
- .welcome-profile {
- // background: $primary !important;
-
- .card-body {
- // background: $primary !important;
-
- img {
- border : 4px solid $white;
- border-radius: 100px;
- width : 60px;
- }
-
- // text-align: center;
-
- h4 {
- // color : $white;
- margin-top: 10px;
- font-size : 18px;
- }
-
- p {
- // color : $white;
- opacity : 0.75;
- // max-width : 300px;
- // margin : 0 auto;
-
- }
-
- ul {
- text-align: left;
-
- li {
- padding : 15px 0px;
- border-bottom: 1px solid $border-color;
-
- &:last-child {
- border : 0px;
- padding-bottom: 0px;
- }
-
- a {
- // color : darken($white, 5%);
- display : flex;
- align-items: center;
- transition : all 0.25 ease-in-out;
-
- span {
- // background : $primary;
- padding : 5px;
- border-radius : 50px;
- width : 30px;
- height : 30px;
- display : inline-flex;
- align-items : center;
- justify-content: center;
- margin-right : 10px;
- transition : all 0.25 ease-in-out;
-
- &.verified {
- background: $success;
- color : $white;
- }
-
- &.not-verified {
- background: $primary;
- color : $white;
- }
- }
- }
- }
- }
- }
- }
-
-
- /////
|