mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
Merge pull request #851 from nunocoracao/834-video-size-rendering-issue
🎨 Add min-w-prose to single content block
This commit is contained in:
commit
02b9f1b27b
3 changed files with 9 additions and 1 deletions
|
@ -4496,6 +4496,10 @@ body:has(#menu-controller:checked) {
|
|||
|
||||
/* Custom */
|
||||
|
||||
.min-w-prose {
|
||||
min-width: 65ch;
|
||||
}
|
||||
|
||||
.thumbnail {
|
||||
min-width: 300px;
|
||||
height: 180px;
|
||||
|
|
|
@ -339,6 +339,10 @@ body:has(#menu-controller:checked) {
|
|||
|
||||
/* Custom */
|
||||
|
||||
.min-w-prose {
|
||||
@apply min-w-[65ch];
|
||||
}
|
||||
|
||||
.thumbnail {
|
||||
min-width: 300px;
|
||||
height: 180px;
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
|
||||
{{ partial "series.html" . }}
|
||||
|
||||
<div class="max-w-prose mb-20">
|
||||
<div class="max-w-prose min-w-prose mb-20">
|
||||
{{ .Content | emojify }}
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue