Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7007 Rev 7014
Línea 29... Línea 29...
29
  align-items: center;
29
  align-items: center;
30
  display: flex;
30
  display: flex;
31
  flex-direction: column;
31
  flex-direction: column;
32
`
32
`
Línea 33... Línea 33...
33
 
33
 
34
const EntityStats = styled.div`
34
const EntityStats = styled.ul`
35
  align-items: center;
35
  align-items: center;
36
  display: flex;
36
  display: flex;
37
  gap: 0.5rem;
37
  gap: 0.5rem;
38
  position: absolute;
38
  position: absolute;
Línea 68... Línea 68...
68
          {industry && <p>{industry}</p>}
68
          {industry && <p>{industry}</p>}
69
        </EntityInfo>
69
        </EntityInfo>
70
      </EntityHeader>
70
      </EntityHeader>
Línea 71... Línea 71...
71
 
71
 
72
      <EntityStats>
-
 
73
        <ul>
72
      <EntityStats>
74
          {!company_name && !!common_connection && (
73
        {!company_name && !!common_connection && (
75
            <li>
74
          <li>
76
              <p>
75
            <p>
77
                <ShareIcon />
76
              <ShareIcon />
78
                {view_common_connection && (
77
              {view_common_connection && (
79
                  <small className="ml-2">{common_connection} comunes</small>
78
                <small className="ml-2">{common_connection} comunes</small>
80
                )}
79
              )}
81
              </p>
80
            </p>
82
            </li>
81
          </li>
83
          )}
82
        )}
84
          {!!followers && (
83
        {!!followers && (
85
            <li>
84
          <li>
86
              <p>
85
            <p>
87
                <GroupIcon />
86
              <GroupIcon />
88
                <small className="ml-2">{followers}</small>
87
              <small className="ml-2">{followers}</small>
89
              </p>
88
            </p>
90
            </li>
89
          </li>
91
          )}
90
        )}
92
          {!!views && (
91
        {!!views && (
93
            <li>
92
          <li>
94
              <p>
93
            <p>
95
                <VisibilityIcon />
94
              <VisibilityIcon />
96
                <small className="ml-2">{views}</small>
95
              <small className="ml-2">{views}</small>
97
              </p>
96
            </p>
98
            </li>
97
          </li>
99
          )}
-
 
100
        </ul>
98
        )}
101
      </EntityStats>
-
 
102
 
99
      </EntityStats>
103
      {description && parse(description)}
100
      {description && parse(description)}
104
      {skills && (
101
      {skills && (
105
        <ul className="skill-tags">
102
        <ul className="skill-tags">
106
          {Object.values(skills).map((skill, id) => (
103
          {Object.values(skills).map((skill, id) => (