Merge pull request #1942 from lbryio/t-patch
Fix table elements padding and spacing
This commit is contained in:
commit
9a716ea5be
2 changed files with 10 additions and 9 deletions
|
@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|||
### Fixed
|
||||
* Paragraph rendering now properly includes a margin for new paragraphs ([#1939](https://github.com/lbryio/lbry-desktop/pull/1939))
|
||||
* Alignment of "navigate to page" input next to pagination on channel pages ([#1941](https://github.com/lbryio/lbry-desktop/pull/1941))
|
||||
* Table spacing with claim name in transactions table ([#1942](https://github.com/lbryio/lbry-desktop/pull/1942))
|
||||
|
||||
|
||||
## [0.25.0] - 2018-08-29
|
||||
|
|
|
@ -15,26 +15,21 @@ table.table,
|
|||
padding-right: $spacing-vertical * 2/3;
|
||||
}
|
||||
|
||||
thead {
|
||||
color: var(--text-color);
|
||||
border-bottom: var(--table-border);
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
tr th,
|
||||
tr td {
|
||||
font-size: 13px;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
th {
|
||||
font-family: 'metropolis-semibold';
|
||||
border: 0;
|
||||
padding: $spacing-vertical * 2/3 $spacing-vertical * 1/3;
|
||||
}
|
||||
|
||||
td {
|
||||
font-family: 'metropolis-medium';
|
||||
color: var(--color-help);
|
||||
padding: $spacing-vertical * 1/6 0;
|
||||
padding: $spacing-vertical * 1/6 $spacing-vertical * 1/3;
|
||||
|
||||
.btn:not(.btn--link) {
|
||||
display: inline;
|
||||
|
@ -50,6 +45,11 @@ table.table,
|
|||
padding-left: $spacing-vertical * 1/3;
|
||||
}
|
||||
|
||||
thead {
|
||||
color: var(--text-color);
|
||||
border-bottom: var(--table-border);
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
border-bottom: var(--table-item-border);
|
||||
|
|
Loading…
Reference in a new issue