Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 531 Rev 532
Línea 20... Línea 20...
20
  @media ${device.tablet} {
20
  @media ${device.tablet} {
21
    border-radius: var(--border-radius);
21
    border-radius: var(--border-radius);
22
  }
22
  }
23
`
23
`
Línea -... Línea 24...
-
 
24
 
-
 
25
const LayoutHeader = styled.div`
-
 
26
  display: flex;
-
 
27
  gap: 0.5rem;
-
 
28
  padding: 5px 1rem;
-
 
29
  align-items: center;
-
 
30
  position: relative;
-
 
31
`
24
 
32
 
25
const LayoutActions = styled.div`
33
const LayoutActions = styled.div`
26
  display: flex;
34
  display: flex;
27
  justify-content: space-between;
35
  justify-content: space-around;
28
  border-top: 1px solid rgb(211, 211, 211);
36
  border-top: 1px solid rgb(211, 211, 211);
29
  padding: 10px;
37
  padding: 5px 0;
30
  & > button {
38
  & > button {
31
    align-items: center;
39
    align-items: center;
32
    border-radius: var(--border-radius);
40
    border-radius: var(--border-radius);
33
    cursor: pointer;
41
    cursor: pointer;
Línea 53... Línea 61...
53
 
61
 
54
const Actions = ({ children, ...rest }) => {
62
const Actions = ({ children, ...rest }) => {
55
  return <LayoutActions {...rest}>{children}</LayoutActions>
63
  return <LayoutActions {...rest}>{children}</LayoutActions>
Línea -... Línea 64...
-
 
64
}
-
 
65
 
-
 
66
const Header = ({ children, ...rest }) => {
-
 
67
  return <LayoutHeader {...rest}>{children}</LayoutHeader>
56
}
68
}
-
 
69
 
Línea 57... Línea 70...
57
 
70
StyledContainer.Actions = Actions