Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3509 | Ir a la última revisión | | 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;
35
  }
36
  .submitButton {
37
    height: 2.5rem;
38
    margin: 0;
39
    width: auto;
40
    margin-top: 0.5rem;
41
    background-color: $button-bg;
42
    border: none;
43
    padding: 0.5rem 1rem;
44
    color: $bg-color;
45
    border-radius: var(--global-border-radius);
46
    border: 1px solid $button-bg;
47
    font-size: 1rem;
48
    transition: 0.2s;
49
    &:hover {
50
      background-color: $button-bg-hover;
51
    }
52
  }
53
}
54
 
55
@include maxwidth("medium") {
56
  .postContainer {
57
    padding: 2rem;
58
  }
59
}