Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2269 Rev 2963
Línea 31... Línea 31...
31
          flexDirection: 'column',
31
          flexDirection: 'column',
32
          gap: 1,
32
          gap: 1,
33
          height: 'fit-content',
33
          height: 'fit-content',
34
          display: { xs: 'none', sm: 'flex' },
34
          display: { xs: 'none', sm: 'flex' },
35
          gridArea: 'sidebar',
35
          gridArea: 'sidebar',
-
 
36
          maxWidth: '100%',
-
 
37
          overflow: 'hidden',
36
          pb: 1
38
          pb: 1
37
        }}
39
        }}
38
      >
40
      >
39
        {renderSidebar()}
41
        {renderSidebar()}
40
      </Box>
42
      </Box>
Línea 42... Línea 44...
42
        sx={{
44
        sx={{
43
          display: 'flex',
45
          display: 'flex',
44
          flexDirection: 'column',
46
          flexDirection: 'column',
45
          rowGap: 1,
47
          rowGap: 1,
46
          gridArea: 'main',
48
          gridArea: 'main',
-
 
49
          maxWidth: '100%',
-
 
50
          overflow: 'hidden',
47
          pb: 1
51
          pb: 1
48
        }}
52
        }}
49
      >
53
      >
50
        {renderMain()}
54
        {renderMain()}
51
      </Box>
55
      </Box>
Línea 53... Línea 57...
53
        sx={{
57
        sx={{
54
          display: 'flex',
58
          display: 'flex',
55
          flexDirection: 'column',
59
          flexDirection: 'column',
56
          gap: 1,
60
          gap: 1,
57
          gridArea: 'aside',
61
          gridArea: 'aside',
-
 
62
          maxWidth: '100%',
-
 
63
          overflow: 'hidden',
58
          pb: 1
64
          pb: 1
59
        }}
65
        }}
60
      >
66
      >
61
        {renderAside()}
67
        {renderAside()}
62
      </Box>
68
      </Box>