Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16666 Rev 16667
Línea 1... Línea 1...
1
@import "../../css/shared/variables.scss";
1
@import "../../css/shared/variables.scss";
Línea 2... Línea 2...
2
 
2
 
3
.comments_list {
3
.comments_list {
4
    display: flex;
4
    display: flex;
-
 
5
    flex-direction: column;
5
    flex-direction: column;
6
    gap: .5rem;
6
    max-height: 250px;
7
    max-height: 250px;
7
    overflow-y: auto;
8
    overflow-y: auto;
Línea 8... Línea 9...
8
}
9
}
9
 
10
 
10
.comment {
11
.comment {
-
 
12
    background-color: $bg-color-secondary;
11
    background-color: $bg-color-secondary;
13
    border-radius: 10px;
12
    border-radius: 10px;
14
    border-top-left-radius: 0;
13
    display: flex;
15
    display: flex;
14
    flex-direction: column;
16
    flex-direction: column;
Línea 15... Línea 17...
15
    gap: .5rem;
17
    gap: .5rem;
16
    padding: .5rem 1rem;
18
    padding: .5rem 1rem;
17
 
19
 
18
    &-header {
20
    &_header {
19
        align-items: center;
21
        align-items: center;
20
        display: flex;
22
        display: flex;
-
 
23
        gap: .5rem;
-
 
24
        position: relative;
-
 
25
        width: 100%;
-
 
26
 
-
 
27
        img {
-
 
28
            width: 40px;
-
 
29
            height: 40px;
-
 
30
            border-radius: 100%;
-
 
31
        }
-
 
32
 
-
 
33
        h3 {
21
        gap: .5rem;
34
            color: $subtitle-color;
22
        position: relative;
35
            font-weight: 500;
23
        width: 100%;
36
        }