1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Data Components UI Update

Changes include:
Table UI updated, including color changes, margin, padding and height adjustments,
Table centered, title added, spacing improved
login - button text includes web app name
This commit is contained in:
Joe 2020-06-05 15:08:03 +01:00
parent 2ff21b0da0
commit 7b25f559c0
3 changed files with 17 additions and 9 deletions

View file

@ -59,6 +59,7 @@
</script>
<form class="form" on:submit|preventDefault>
<h1>{modelDef.name} Form</h1>
<div class="form-content">
{#each fields as field}
<div class="form-item">
@ -79,14 +80,14 @@
<style>
.form {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.form-content {
margin-bottom: 20px;
justify-content: space-between;
align-items: baseline;
}
.input {
@ -100,13 +101,13 @@
.form-item {
display: flex;
justify-content: space-between;
flex-direction: column;
margin-bottom: 16px;
}
.form-label {
font-weight: bold;
margin-bottom: 8px;
margin-bottom: 12px;
}
hr {

View file

@ -65,24 +65,31 @@
}
thead {
background: #f9f9f9;
background: #393C44;
border: 1px solid #ccc;
height: 40px;
text-align: left;
margin-right: 60px;
}
thead th {
color: var(--button-text);
color: #ffffff;
text-transform: capitalize;
font-weight: 500;
font-size: 14px;
text-rendering: optimizeLegibility;
letter-spacing: 1px;
justify-content: left;
padding: 16px 20px 16px 8px;
margin-right: 20px;
}
tbody tr {
border-bottom: 1px solid #ccc;
transition: 0.3s background-color;
color: var(--secondary100);
color: #393C44;
font-size: 14px;
height: 40px;
}
tbody tr:hover {

View file

@ -79,7 +79,7 @@
<div class="login-button-container">
<button disabled={loading} on:click={login} class={_buttonClass}>
{loginButtonLabel}
Log in to {name}
</button>
</div>