Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
16650 stevensc 1
@use "../../css/shared/mixin.scss";
2
@import "../../css/shared/variables.scss";
3
@import "../../css/shared/breakpoints.scss";
4
 
5
.feed {
6
  @include mixin.widget;
7
  display: flex;
8
  flex-direction: column;
9
  padding: 1rem;
10
 
11
  &_header {
16653 stevensc 12
    align-items: center;
16650 stevensc 13
    display: flex;
14
    position: relative;
15
    gap: .5rem;
16
    width: 100%;
17
 
18
    img {
19
      width: 50px;
20
      height: 50px;
21
      border-radius: 100%;
22
    }
23
  }
24
 
25
  &_info {
26
    display: flex;
27
    flex-direction: column;
28
 
16653 stevensc 29
    h2 {
30
      color: $title-color;
31
      font-size: 1.1rem;
32
      font-weight: 600;
33
    }
34
 
16650 stevensc 35
    span {
36
      align-items: center;
37
      color: $subtitle-color;
38
      display: flex;
39
      gap: .5rem;
40
    }
41
  }
42
}
43
 
44
.commentSection {
45
  max-height: 400px;
46
  overflow-y: auto;
47
  background: $background-gray;
48
  margin-top: 1rem;
49
  padding: 1rem;
50
}
51
 
52
.feedCommentContainer {
53
  display: flex;
54
  justify-content: flex-start;
55
  align-items: center;
56
  margin-top: 1rem;
57
  gap: 10px;
58
 
59
  img {
60
    border-radius: 100px;
61
    width: 43px;
62
    height: 43px;
63
    object-fit: cover;
64
  }
65
 
66
  .commentInput {
67
    margin: 0;
68
    flex: 1;
69
    padding: 0.5rem 0;
70
    border: none;
71
    font-size: 1rem;
72
  }
73
 
74
  .submitButton {
75
    height: 2.5rem;
76
    margin: 0;
77
    width: auto;
78
    margin-top: 0.5rem;
79
    background-color: $primary-lightblue;
80
    border: none;
81
    padding: 0.5rem 1rem;
82
    color: white !important;
83
    border-radius: var(--global-border-radius);
84
    border: 1px solid $primary-lightblue;
85
    font-size: 1rem;
86
    transition: 0.2s;
87
 
88
    &:hover {
89
      background-color: $primary-lightblue-hover;
90
    }
91
  }
92
}