Browse Source
fix inconsistencies in heights and paddings
pull/431/head
kevmodrome
6 years ago
No known key found for this signature in database
GPG Key ID: E8F9CD141E63BF38
2 changed files with
21 additions and
5 deletions
-
packages/builder/src/components/settings/UserRow.svelte
-
packages/builder/src/components/settings/tabs/Users.svelte
|
|
|
@ -39,4 +39,16 @@ |
|
|
|
grid-gap: 18px; |
|
|
|
grid-template-columns: 1fr 1fr 1fr; |
|
|
|
} |
|
|
|
.inputs :global(input) { |
|
|
|
padding: 10px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 9px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(button) { |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
height: initial; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
@ -103,16 +103,12 @@ |
|
|
|
display: grid; |
|
|
|
grid-gap: 12px; |
|
|
|
border-radius: 5px; |
|
|
|
background-color: var(--grey-2); |
|
|
|
background-color: var(--grey-1); |
|
|
|
padding: 12px 12px 18px 12px; |
|
|
|
} |
|
|
|
.background.create { |
|
|
|
background-color: var(--blue-light); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 12px 9px; |
|
|
|
height: initial; |
|
|
|
} |
|
|
|
.create-button { |
|
|
|
position: absolute; |
|
|
|
top: 12px; |
|
|
|
@ -132,6 +128,14 @@ |
|
|
|
grid-gap: 18px; |
|
|
|
grid-template-columns: 1fr 1fr 1fr; |
|
|
|
} |
|
|
|
.inputs :global(input) { |
|
|
|
padding: 10px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 9px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
ul { |
|
|
|
list-style: none; |
|
|
|
padding: 0; |
|
|
|
|