Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3503 | Rev 3514 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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