File tree Expand file tree Collapse file tree 4 files changed +16
-11
lines changed
app/bundles/system/admin/instance/instance Expand file tree Collapse file tree 4 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,10 @@ const IndividualInvitation: FC<Props> = (props) => {
102102 < Box key = { index } className = "flex items-center justify-start" >
103103 { renderInvitationBody }
104104 < Tooltip title = { intl . formatMessage ( translations . removeInvitation ) } >
105- < IconButton onClick = { ( ) : void => fieldsConfig . remove ( index ) } >
105+ < IconButton
106+ className = "p-3"
107+ onClick = { ( ) : void => fieldsConfig . remove ( index ) }
108+ >
106109 < Close />
107110 </ IconButton >
108111 </ Tooltip >
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ const IndividualInviteForm: FC<Props> = (props) => {
115115
116116 return (
117117 < form
118+ className = "pl-6 pr-3"
118119 encType = "multipart/form-data"
119120 id = "invite-users-individual-form"
120121 noValidate
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const translations = defineMessages({
3434 } ,
3535 noAnnouncements : {
3636 id : 'system.admin.instance.instance.InstanceAnnouncementsIndex.noAnnouncement' ,
37- defaultMessage : 'There is no announcement ' ,
37+ defaultMessage : 'There are no announcements ' ,
3838 } ,
3939} ) ;
4040
@@ -60,14 +60,15 @@ const InstanceAnnouncementsIndex: FC<Props> = (props) => {
6060 return (
6161 < Page >
6262 { announcementPermission && (
63- < AddButton
64- className = "float-right"
65- fixed
66- id = "new-announcement-button"
67- onClick = { ( ) : void => setIsOpen ( true ) }
68- >
69- { intl . formatMessage ( translations . newAnnouncement ) }
70- </ AddButton >
63+ < div className = "w-full flex justify-end" >
64+ < AddButton
65+ fixed
66+ id = "new-announcement-button"
67+ onClick = { ( ) : void => setIsOpen ( true ) }
68+ >
69+ { intl . formatMessage ( translations . newAnnouncement ) }
70+ </ AddButton >
71+ </ div >
7172 ) }
7273
7374 { announcements . length === 0 ? (
Original file line number Diff line number Diff line change 77837783 "defaultMessage" : " New Announcement"
77847784 },
77857785 "system.admin.instance.instance.InstanceAnnouncementsIndex.noAnnouncement" : {
7786- "defaultMessage" : " There is no announcement "
7786+ "defaultMessage" : " There are no announcements "
77877787 },
77887788 "system.admin.instance.instance.InstanceComponentsForm.fetchComponentsFailure" : {
77897789 "defaultMessage" : " Failed to fetch component settings."
You can’t perform that action at this time.
0 commit comments