Compare commits

..

3 commits

Author SHA1 Message Date
24b9e350e2 Merge pull request 'added minimum space to empty timeline' (#400) from Riedler/akkoma-fe:empty-tl-minspace into develop
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Reviewed-on: #400
2024-06-17 21:40:56 +00:00
f1058567b9 also set min height for other lists (e.g. follow requests), not just the timeline
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
2024-06-16 16:12:15 +02:00
49a850a1e9 added minimum space to empty timeline
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
2024-06-16 15:49:52 +02:00
2 changed files with 4 additions and 0 deletions

View file

@ -42,6 +42,7 @@ export default {
@import '../../_variables.scss';
.list {
min-height: 1em;
&-item:not(:last-child) {
border-bottom: 1px solid;
border-bottom-color: $fallback--border;

View file

@ -28,4 +28,7 @@
}
}
}
.timeline {
min-height: 1em;
}
}