uk-table removed, uk margin styles add to global

This commit is contained in:
Victoria Sloan 2020-08-23 09:31:39 +01:00
parent 63aa2eda15
commit 1bd7104021
3 changed files with 31 additions and 3 deletions

View File

@ -63,7 +63,7 @@
{/if} {/if}
</div> </div>
</div> </div>
<table class="uk-table"> <table class="bb-table">
<thead> <thead>
<tr> <tr>
<th class="edit-header"> <th class="edit-header">

View File

@ -42,7 +42,7 @@
<slot /> <slot />
</div> </div>
</div> </div>
<table class="uk-table"> <table class="bb-table">
<thead> <thead>
<tr> <tr>
{#each columns as header} {#each columns as header}

View File

@ -96,6 +96,8 @@ textarea {
cursor: pointer; cursor: pointer;
} }
/* Top bottom spacing */
.bb-margin-m { .bb-margin-m {
margin-bottom: var(--spacing-m); margin-bottom: var(--spacing-m);
} }
@ -109,4 +111,30 @@ textarea {
* + .bb-margin-xl { * + .bb-margin-xl {
margin-top: var(--spacing-xl); margin-top: var(--spacing-xl);
} }
/* Table styles */
.bb-table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
margin-bottom: var(--spacing-xl);
}
* + .bb-table {
margin-top: var(--spacing-xl)
}
.bb-table th {
padding: var(--spacing-l) var(--spacing-m);
text-align: left;
vertical-align: bottom;
}
.bb-table td {
padding: var(--spacing-l) var(--spacing-m);
vertical-align: top;
}
.bb-table td > :last-child { margin-bottom: 0; }