File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed
src/organisms/Calendar/EventsList Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ export const EventsList = ({
42
42
] . includes ( type )
43
43
44
44
const dateTextStyle = {
45
+ color : vars ( 'colors-neutral-white' ) ,
45
46
fontSize : '14px' ,
46
47
fontWeight : '700' ,
47
- color : vars ( 'colors-neutral-white' ) ,
48
48
lineHeight : '100%' ,
49
49
}
50
50
@@ -81,14 +81,24 @@ export const EventsList = ({
81
81
82
82
< Box display = "flex" flexDirection = "column" gap = "8px" w = "100%" >
83
83
< Box
84
- lineHeight = "21px"
85
- display = "flex"
86
- justifyContent = "space-between"
87
84
alignItems = "center"
85
+ display = "flex"
88
86
fontSize = "16px"
89
87
fontWeight = "700"
88
+ justifyContent = "space-between"
89
+ lineHeight = "21px"
90
+ sx = { {
91
+ '>span' : {
92
+ width : 'calc(100% - 12px)' ,
93
+ } ,
94
+ '>svg' : {
95
+ alignSelf : 'flex-start' ,
96
+ } ,
97
+ } }
90
98
>
91
- { name } { hasNotification && < NotificationIcon /> }
99
+ < span > { name } </ span >
100
+ { hasNotification && < NotificationIcon /> }
101
+ < NotificationIcon />
92
102
</ Box >
93
103
94
104
{ showCourse && ! initOrEnd && (
You can’t perform that action at this time.
0 commit comments