Fleet setup: Overflow fix (#2927)

This commit is contained in:
RachelElysia 2021-11-16 12:55:57 -05:00 committed by GitHub
parent 321402ebb7
commit f81d010b72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View file

@ -0,0 +1 @@
* Fix: Fleet Setup confirmation overflow

View file

@ -78,7 +78,7 @@ const ConfirmationPage = ({
</tr>
<tr>
<th>Email:</th>
<td>{email}</td>
<td className={`${baseClass}__table-email`}>{email}</td>
</tr>
<tr>
<th>Organization:</th>

View file

@ -52,7 +52,7 @@
font-size: $small;
font-weight: $bold;
text-align: left;
padding-right: 108px;
padding-right: 20px;
}
td {
@ -61,8 +61,15 @@
}
}
&__table-email {
max-width: 292px;
word-wrap: break-word;
}
&__table-url {
@include ellipsis(100%);
display: inline-block;
max-width: 292px;
word-wrap: break-word;
font-family: "SourceCodePro", $monospace;
vertical-align: bottom;
font-weight: 600;