Proyectos de Subversion LeadersLinked - SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1650 stevensc 1
import { styled } from '@mui/material'
2
 
3
export const StyledCommentForm = styled('form')`
4
  display: flex;
5
  align-items: center;
6
  gap: 0.5rem;
7
`
8
 
1661 stevensc 9
export const CommentsContainer = styled('div')`
1650 stevensc 10
  display: flex;
11
  flex-direction: column;
12
  gap: 0.5rem;
13
  margin-top: 0.5rem;
14
  max-height: 300px;
15
  overflow-y: auto;
16
  width: 100%;
17
`