Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16664 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16664 Rev 16666
Línea 77... Línea 77...
77
    height: 180%;
77
    height: 180%;
78
    width: 100%;
78
    width: 100%;
79
    max-height: none;
79
    max-height: none;
80
    filter: blur(20px);
80
    filter: blur(20px);
81
  }
81
  }
82
}
-
 
83
 
-
 
84
.commentSection {
-
 
85
  max-height: 400px;
-
 
86
  overflow-y: auto;
-
 
87
  background: $background-gray;
-
 
88
  margin-top: 1rem;
-
 
89
  padding: 1rem;
-
 
90
}
-
 
91
 
-
 
92
.feedCommentContainer {
-
 
93
  display: flex;
-
 
94
  justify-content: flex-start;
-
 
95
  align-items: center;
-
 
96
  margin-top: 1rem;
-
 
97
  gap: 10px;
-
 
98
 
-
 
99
  img {
-
 
100
    border-radius: 100px;
-
 
101
    width: 43px;
-
 
102
    height: 43px;
-
 
103
    object-fit: cover;
-
 
104
  }
-
 
105
 
-
 
106
  .commentInput {
-
 
107
    margin: 0;
-
 
108
    flex: 1;
-
 
109
    padding: 0.5rem 0;
-
 
110
    border: none;
-
 
111
    font-size: 1rem;
-
 
112
  }
-
 
113
 
-
 
114
  .submitButton {
-
 
115
    height: 2.5rem;
-
 
116
    margin: 0;
-
 
117
    width: auto;
-
 
118
    margin-top: 0.5rem;
-
 
119
    background-color: $primary-lightblue;
-
 
120
    border: none;
-
 
121
    padding: 0.5rem 1rem;
-
 
122
    color: white !important;
-
 
123
    border-radius: var(--global-border-radius);
-
 
124
    border: 1px solid $primary-lightblue;
-
 
125
    font-size: 1rem;
-
 
126
    transition: 0.2s;
-
 
127
 
-
 
128
    &:hover {
-
 
129
      background-color: $primary-lightblue-hover;
-
 
130
    }
-
 
131
  }
-
 
132
}
82
}
133
83