Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7161 Rev 7162
Línea 54... Línea 54...
54
  gap: 0.5rem;
54
  gap: 0.5rem;
55
  padding: 0.5rem;
55
  padding: 0.5rem;
56
  width: fit-content;
56
  width: fit-content;
57
`
57
`
Línea -... Línea 58...
-
 
58
 
-
 
59
const QuestionActions = styled.div`
-
 
60
  display: flex;
-
 
61
  align-items: center;
-
 
62
  gap: 0.5rem;
-
 
63
  justify-content: space-around;
-
 
64
  padding-top: 0.5rem;
-
 
65
  border-top: 1px solid var(--border-primary);
-
 
66
 
-
 
67
  & > * {
-
 
68
    flex-grow: 1;
-
 
69
  }
-
 
70
`
58
 
71
 
59
const QuestionCard = ({
72
const QuestionCard = ({
60
  uuid = '',
73
  uuid = '',
61
  user_name = '',
74
  user_name = '',
62
  user_image = '',
75
  user_image = '',
Línea 103... Línea 116...
103
        <span>{`${reactions} ${labels.my_coach_reactions}`}</span>
116
        <span>{`${reactions} ${labels.my_coach_reactions}`}</span>
104
        <span>{`${views} ${labels.my_coach_views}`}</span>
117
        <span>{`${views} ${labels.my_coach_views}`}</span>
105
        <span>{`${comments} ${labels.comments}`}</span>
118
        <span>{`${comments} ${labels.comments}`}</span>
106
      </div>
119
      </div>
Línea 107... Línea 120...
107
 
120
 
108
      <div className="my-coach-record-card-actions">
121
      <QuestionActions>
109
        {link_view && (
122
        {link_view && (
110
          <button className="btn feed__share-option">
123
          <button className="btn feed__share-option">
111
            <OpenInNewIcon />
124
            <OpenInNewIcon />
112
            {labels.view}
125
            {labels.view}
Línea 122... Línea 135...
122
          <button className="btn feed__share-option">
135
          <button className="btn feed__share-option">
123
            <DeleteIcon />
136
            <DeleteIcon />
124
            {labels.delete}
137
            {labels.delete}
125
          </button>
138
          </button>
126
        )}
139
        )}
127
      </div>
140
      </QuestionActions>
128
    </StyledQuestionCard>
141
    </StyledQuestionCard>
129
  )
142
  )
130
}
143
}
Línea 131... Línea 144...
131
 
144