Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5925 | Rev 5927 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5925 Rev 5926
Línea 16... Línea 16...
16
    max-width: 250px;
16
    max-width: 250px;
17
    max-height: 250px;
17
    max-height: 250px;
18
    object-fit: contain;
18
    object-fit: contain;
19
  }
19
  }
Línea 20... Línea 20...
20
 
20
 
21
  &_sent {
-
 
22
    align-self: flex-end;
21
  &.sent {
23
    background-color: $chat-send;
22
    background-color: $chat-send;
24
    border-radius: 10px 0 10px 10px;
23
    border-radius: 10px 0 10px 10px;
Línea 25... Línea 24...
25
  }
24
  }
26
 
-
 
27
  &_received {
25
 
28
    align-self: flex-start;
26
  &.received {
29
    background-color: $chat-received;
27
    background-color: $chat-received;
Línea 30... Línea 28...
30
    border-radius: 0 10px 10px 10px;
28
    border-radius: 0 10px 10px 10px;
Línea 55... Línea 53...
55
}
53
}
Línea 56... Línea 54...
56
 
54
 
57
.message_container {
55
.message_container {
58
  display: inline-flex;
56
  display: inline-flex;
-
 
57
  gap: 1rem;
-
 
58
  width: 100%;
-
 
59
 
-
 
60
  &.sent {
-
 
61
    flex-direction: row-reverse;
-
 
62
  }
-
 
63
 
-
 
64
  &.received {
-
 
65
    flex-direction: row;
59
  gap: 1rem;
66
  }
60
}
67
}