mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fleet setup: Overflow fix (#2927)
This commit is contained in:
parent
321402ebb7
commit
f81d010b72
3 changed files with 11 additions and 3 deletions
1
changes/issue-2923-setup-overflow-info
Normal file
1
changes/issue-2923-setup-overflow-info
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fix: Fleet Setup confirmation overflow
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue