1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +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 eaf4813b8b
commit 63fe1349c3
3 changed files with 17 additions and 9 deletions

View file

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

View file

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

View file

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