Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7009 Rev 7023
Línea 6... Línea 6...
6
  border: 1px solid var(--border-primary);
6
  border: 1px solid var(--border-primary);
7
  border-radius: var(--border-radius);
7
  border-radius: var(--border-radius);
8
  height: fit-content;
8
  height: fit-content;
9
  box-shadow: var(--light-shadow);
9
  box-shadow: var(--light-shadow);
10
  width: 100%;
10
  width: 100%;
-
 
11
 
11
  display: flex;
12
  display: flex;
12
  flex-direction: column;
13
  flex-direction: column;
13
  gap: 1rem;
14
  gap: 1rem;
14
  padding: 1rem 0;
15
  padding: 1rem 0;
Línea 15... Línea -...
15
 
-
 
16
  * {
-
 
17
    margin-left: 1rem;
-
 
18
    margin-right: 1rem;
-
 
19
  }
-
 
20
 
-
 
21
  input {
-
 
22
    width: -webkit-fill-available;
-
 
23
  }
-
 
24
 
-
 
25
  h3 {
-
 
26
    font-weight: 600;
-
 
27
    color: var(--subtitle-color);
-
 
28
  }
-
 
29
 
-
 
30
  ul {
-
 
31
    border-top: 1px solid var(--border-primary);
-
 
32
    display: flex;
-
 
33
    flex-direction: column;
-
 
34
    gap: 0.5rem;
-
 
35
    padding-top: 1rem;
-
 
36
 
-
 
37
    label {
-
 
38
      cursor: pointer;
-
 
39
    }
-
 
40
  }
-
 
41
 
16
 
42
  @media (max-width: 768px) {
17
  @media (max-width: 768px) {
43
    border-radius: 0;
18
    border-radius: 0;
44
    border-left: 0;
19
    border-left: 0;
45
    border-right: 0;
20
    border-right: 0;
46
  }
21
  }
Línea 47... Línea 22...
47
`
22
`
48
 
23
 
49
const WidgetLayout = ({ children }) => {
24
const WidgetLayout = ({ children, ...rest }) => {
Línea 50... Línea 25...
50
  return <LocationWidget>{children}</LocationWidget>
25
  return <LocationWidget {...rest}>{children}</LocationWidget>