Fix overflows through out the front end (#2382)
* Fix overflows through out the front end Fixed Server row overflow for servers name and description Fixed Sub-user overflow for users with oddly long emails.... Fixed Server new overflow on console view. See Attached images. * Remove conflicting server name limits
This commit is contained in:
parent
c75ed20b26
commit
c928214a83
5 changed files with 6 additions and 6 deletions
|
@ -65,7 +65,7 @@ export default () => {
|
|||
return (
|
||||
<ServerContentBlock title={'Console'} css={tw`flex flex-wrap`}>
|
||||
<div css={tw`w-full md:w-1/4`}>
|
||||
<TitledGreyBox title={name} icon={faServer}>
|
||||
<TitledGreyBox css={tw`break-all`} title={name} icon={faServer}>
|
||||
<p css={tw`text-xs uppercase`}>
|
||||
<FontAwesomeIcon
|
||||
icon={faCircle}
|
||||
|
|
Reference in a new issue