Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
14867 stevensc 1
@import "../../css/shared/variables.scss";
2
@import "../../css/shared/breakpoints.scss";
3
 
4
.postContainer {
5
  display: flex;
6
  background-color: #ffffff;
7
  padding: 2rem;
8
  margin-bottom: 1rem;
9
  flex-direction: column;
10
}
11
 
12
.commentSection {
13
  max-height: 400px;
14
  overflow-y: auto;
15
  background: $background-gray;
16
  margin-top: 1rem;
17
  padding: 1rem;
18
}
19
 
20
.feedCommentContainer {
21
  display: flex;
22
  justify-content: flex-start;
23
  align-items: center;
24
  margin-top: 1rem;
25
  gap: 10px;
26
  img {
27
    border-radius: 100px;
28
    width: 43px;
29
    height: 43px;
30
    object-fit: cover;
31
  }
32
  .commentInput {
33
    margin: 0;
34
    flex: 1;
35
    padding: 0.5rem 0;
36
    border: none;
37
    font-size: 1rem;
38
  }
39
  .submitButton {
40
    height: 2.5rem;
41
    margin: 0;
42
    width: auto;
43
    margin-top: 0.5rem;
44
    background-color: $primary-lightblue;
45
    border: none;
46
    padding: 0.5rem 1rem;
47
    color: white !important;
48
    border-radius: var(--global-border-radius);
49
    border: 1px solid $primary-lightblue;
50
    font-size: 1rem;
51
    transition: 0.2s;
52
    &:hover {
53
      background-color: $primary-lightblue-hover;
54
    }
55
  }
56
}