Styling fix for license key input

This commit is contained in:
Rory Powell 2023-07-21 08:43:53 +01:00
parent 5cc97ebcd5
commit 725bade8c5
1 changed files with 5 additions and 4 deletions

View File

@ -205,11 +205,9 @@
>
</Layout>
<Layout noPadding>
<div class="fields">
<div class="field">
<div class="identifier-input">
<CopyInput value={offlineLicenseIdentifier} />
</div>
</div>
</Layout>
<Divider />
<Layout gap="XS" noPadding>
@ -291,8 +289,11 @@
}
.field {
display: grid;
grid-template-columns: 300px 1fr;
grid-template-columns: 100px 1fr;
grid-gap: var(--spacing-l);
align-items: center;
}
.identifier-input {
width: 300px;
}
</style>