1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

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}
</div>
</div>
<table class="uk-table">
<table class="bb-table">
<thead>
<tr>
<th class="edit-header">

View file

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

View file

@ -96,6 +96,8 @@ textarea {
cursor: pointer;
}
/* Top bottom spacing */
.bb-margin-m {
margin-bottom: var(--spacing-m);
}
@ -109,4 +111,30 @@ textarea {
* + .bb-margin-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; }