We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b2d17e commit e00862dCopy full SHA for e00862d
src/organisms/Calendar/EventsList/EventsList.tsx
@@ -119,7 +119,9 @@ export const EventsList = ({
119
120
{showCourse && !initOrEnd && (
121
<Box display="flex" gap="4px" alignItems="baseline">
122
- {isMobile && <Box height="10px" width="10px" bg={color} borderRadius="50%" />}
+ {isMobile && (
123
+ <Box minH="10px" minW="10px" maxH="10px" maxW="10px" bg={color} borderRadius="50%" />
124
+ )}
125
126
<Box as="span" sx={detailTextStyle}>
127
<strong>{text ? `${text}:` : 'Curso:'}</strong> {courseName}
0 commit comments