Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 675 | Rev 1469 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 675 Rev 677
Línea 14... Línea 14...
14
import ProfileInfo from '../../components/widgets/default/ProfileWidget'
14
import ProfileInfo from '../../components/widgets/default/ProfileWidget'
15
import styled from 'styled-components'
15
import styled from 'styled-components'
16
import StyledContainer from '../../components/widgets/WidgetLayout'
16
import StyledContainer from '../../components/widgets/WidgetLayout'
17
import Paraphrase from '../../components/UI/Paraphrase'
17
import Paraphrase from '../../components/UI/Paraphrase'
Línea -... Línea 18...
-
 
18
 
-
 
19
const StyledNotificationList = styled(StyledContainer.Body)`
-
 
20
  max-height: 60vh;
-
 
21
  overflow: auto;
-
 
22
`
18
 
23
 
19
const StyledNotificationItem = styled.div`
24
const StyledNotificationItem = styled.div`
20
  position: relative;
25
  position: relative;
21
  display: flex;
26
  display: flex;
22
  flex-direction: column;
27
  flex-direction: column;
Línea 168... Línea 173...
168
                    }
173
                    }
169
                  ]}
174
                  ]}
170
                />
175
                />
171
              </StyledContainer.Header>
176
              </StyledContainer.Header>
Línea 172... Línea 177...
172
 
177
 
173
              <StyledContainer.Body>
178
              <StyledNotificationList>
174
                {notifications.length ? (
179
                {notifications.length ? (
175
                  [...notifications].reverse().map((notification, index) => (
180
                  [...notifications].reverse().map((notification, index) => (
176
                    <div key={index}>
181
                    <div key={index}>
177
                      <NotificationsPage.Item
182
                      <NotificationsPage.Item
Línea 184... Línea 189...
184
                  <EmptySection
189
                  <EmptySection
185
                    message='No hay notificaciones'
190
                    message='No hay notificaciones'
186
                    align='center'
191
                    align='center'
187
                  />
192
                  />
188
                )}
193
                )}
189
              </StyledContainer.Body>
194
              </StyledNotificationList>
190
            </StyledContainer>
195
            </StyledContainer>
191
          </Col>
196
          </Col>
192
        </Row>
197
        </Row>
193
      </Container>
198
      </Container>
194
      <ConfirmModal
199
      <ConfirmModal