Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 846 Rev 848
Línea 82... Línea 82...
82
      }
82
      }
83
    }
83
    }
84
  }
84
  }
85
`
85
`
Línea -... Línea 86...
-
 
86
 
-
 
87
const Actions = styled.div`
-
 
88
  display: flex;
-
 
89
  justify-content: space-around;
-
 
90
  border-top: 1px solid rgb(211, 211, 211);
-
 
91
  padding: 5px;
-
 
92
  button {
-
 
93
    display: inline-flex;
-
 
94
    gap: 1rem;
-
 
95
    align-items: center;
-
 
96
    svg {
-
 
97
      font-size: 1rem;
-
 
98
    }
-
 
99
  }
-
 
100
`
86
 
101
 
87
const StyledAvatar = styled(Avatar)`
102
const StyledAvatar = styled(Avatar)`
88
  height: 60px !important;
103
  height: 60px !important;
89
  width: 60px !important;
104
  width: 60px !important;
Línea 328... Línea 343...
328
                )}
343
                )}
329
              </ul>
344
              </ul>
330
            )}
345
            )}
331
          </StyledContent>
346
          </StyledContent>
332
        </StyledHeader>
347
        </StyledHeader>
333
        <StyledItemContainer.Actions>
348
        <Actions>
334
          {linksOptions.map(({ label, url, icon: Icon, color }) => {
349
          {linksOptions.map(({ label, url, icon: Icon, color }) => {
335
            const breakOptions = [link_view, link_edit, link_inmail]
350
            const breakOptions = [link_view, link_edit, link_inmail]
Línea 336... Línea 351...
336
 
351
 
337
            if (!url) {
352
            if (!url) {
Línea 373... Línea 388...
373
                <Icon />
388
                <Icon />
374
                {label}
389
                {label}
375
              </button>
390
              </button>
376
            )
391
            )
377
          })}
392
          })}
378
        </StyledItemContainer.Actions>
393
        </Actions>
379
        {loading && (
394
        {loading && (
380
          <StyledSpinnerContainer>
395
          <StyledSpinnerContainer>
381
            <Spinner />
396
            <Spinner />
382
          </StyledSpinnerContainer>
397
          </StyledSpinnerContainer>
383
        )}
398
        )}