Skip to content

Commit 2b6fea7

Browse files
fix(PDYE-1142): evito que se deformen los colores del curso
1 parent bb216e4 commit 2b6fea7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/organisms/Calendar/EventsList/EventsList.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,17 @@ export const EventsList = ({
6565
{isDropdown && (
6666
<Box display="flex" alignItems="center" gap="4px" lineHeight="19px">
6767
<Box
68-
h="10px"
69-
w="10px"
68+
alignSelf="flex-start"
7069
bg={color}
7170
borderRadius="50%"
7271
display="block"
73-
alignSelf="flex-start"
72+
h="10px"
7473
mt="4px"
74+
maxH="10px"
75+
maxW="10px"
76+
minH="10px"
77+
minW="10px"
78+
w="10px"
7579
/>
7680
<Box as="span" color={vars('colors-neutral-gray') ?? '#808080'} fontSize="14px">
7781
<strong>{text ?? 'Curso'}:</strong> {courseName}

0 commit comments

Comments
 (0)