Tidy styles on user details page
This commit is contained in:
parent
089b615c1b
commit
bb5c95b86a
|
@ -219,7 +219,7 @@
|
||||||
<Layout gap="L" noPadding>
|
<Layout gap="L" noPadding>
|
||||||
<Layout gap="XS" noPadding>
|
<Layout gap="XS" noPadding>
|
||||||
<div>
|
<div>
|
||||||
<ActionButton on:click={() => $goto("./")} size="S" icon="ArrowLeft">
|
<ActionButton on:click={() => $goto("./")} icon="ArrowLeft">
|
||||||
Back
|
Back
|
||||||
</ActionButton>
|
</ActionButton>
|
||||||
</div>
|
</div>
|
||||||
|
@ -288,7 +288,7 @@
|
||||||
|
|
||||||
{#if hasGroupsLicense}
|
{#if hasGroupsLicense}
|
||||||
<!-- User groups -->
|
<!-- User groups -->
|
||||||
<Layout gap="XS" noPadding>
|
<Layout gap="S" noPadding>
|
||||||
<div class="tableTitle">
|
<div class="tableTitle">
|
||||||
<div>
|
<div>
|
||||||
<Heading size="XS">User groups</Heading>
|
<Heading size="XS">User groups</Heading>
|
||||||
|
@ -336,13 +336,10 @@
|
||||||
{/if}
|
{/if}
|
||||||
<!-- User Apps -->
|
<!-- User Apps -->
|
||||||
<Layout gap="S" noPadding>
|
<Layout gap="S" noPadding>
|
||||||
<div class="appsTitle">
|
<div>
|
||||||
<Heading size="XS">Apps</Heading>
|
<Heading size="XS">Apps</Heading>
|
||||||
<div style="margin-top: var(--spacing-xs)">
|
<Body size="S">Manage apps that this user has been assigned to</Body>
|
||||||
<Body size="S">Manage apps that this user has been assigned to</Body>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<List>
|
<List>
|
||||||
{#if allAppList.length}
|
{#if allAppList.length}
|
||||||
{#each allAppList as app}
|
{#each allAppList as app}
|
||||||
|
@ -388,7 +385,7 @@
|
||||||
}
|
}
|
||||||
.field {
|
.field {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 32% 1fr;
|
grid-template-columns: 100px 1fr;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -401,7 +398,6 @@
|
||||||
.tableTitle {
|
.tableTitle {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-bottom: var(--spacing-m);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtitle {
|
.subtitle {
|
||||||
|
@ -411,9 +407,4 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
|
|
||||||
.appsTitle {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue