| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- .chat-card {
- padding: 12px;
- display: flex;
- justify-content: flex-start;
- $size: 42px;
- --avatar-size: 42px;
- &.left {
- flex-direction: row;
- .chat-card__avatar {
- margin-right: 8px;
- image {
- width: 90%;
- height: 90%;
- }
- }
- .chat-card__content {
- width: calc(90% - var(--avatar-size));
- // border-color: #1B4F34;
- }
- }
- &.right {
- flex-direction: row-reverse;
- .chat-card__avatar {
- margin-left: 8px;
- }
- .chat-card__content {
- // border-color: #38FF6E;
- border-radius: 10px 0px 10px 10px;
- }
- }
- &__avatar {
- flex: none;
- display: flex;
- justify-content: center;
- align-items: center;
- width: $size;
- height: $size;
- border-radius: 50%;
- }
- &__content {
- max-width: calc(80% - $size);
- // background-color: rgba(255, 255, 255, 0.04);
- background-color: white;
- border-radius: 0px 10px 10px 10px;
- border-width: 1px;
- // border-style: solid;
- overflow: hidden;
- }
- &__handle {
- display: flex;
- flex-direction: row;
- justify-content: space-evenly;
- margin: 12px 0;
- &.disabled {
- opacity: 0.5;
- }
- .item {
- position: relative;
- // width: 190 * 0.5px;
- width: 40%;
- height: 54 * 0.5px;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- font-size: 12px;
- // color: var(--primary-color);
- color: #fff;
- image {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .loading {
- --td-loading-color: #38FF6E;
- align-self: center;
- margin: 0 8px;
- }
|