Improve styling of tables in articles

Signed-off-by: chylex <contact@chylex.com>
This commit is contained in:
chylex 2022-05-10 19:06:16 +02:00 committed by Benjamin Brahmer
parent 129caf4ae1
commit 00cb4becf6
2 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
## [18.x.x]
### Changed
- Add routes for starring/unstarring items by id
- Improve styling of tables in articles
### Fixed
- Fix updated api not returning any item after marking item as read (#1713)

View File

@ -639,6 +639,20 @@
white-space: normal;
}
#app-content .body table {
border-collapse: collapse;
}
#app-content .body table th {
font-weight: bold;
}
#app-content .body table th,
#app-content .body table td {
border: 1px solid var(--color-text-lighter);
padding: 2px 6px;
}
#app-content .body iframe {
max-width: 100%;
}