1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

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

View file

@ -205,10 +205,8 @@
>
</Layout>
<Layout noPadding>
<div class="fields">
<div class="field">
<div class="identifier-input">
<CopyInput value={offlineLicenseIdentifier} />
</div>
</div>
</Layout>
<Divider />
@ -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>