mirror of
https://gitee.com/butubb8/blowfish.git
synced 2025-12-05 14:17:50 +08:00
💄 Style: Fix overflow on some home layouts
Fixed width elements were overflowing previously on: background, hero and profile. This addresses https://github.com/nunocoracao/blowfish/issues/2292 Currently the section element expands more than it used to on larger screens, I will try to fix this.
This commit is contained in:
@@ -79,7 +79,8 @@
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<section class="prose dark:prose-invert">{{ .Content }}</section>
|
||||
<!-- FIXME: This lets section expand too much on larger screens-->
|
||||
<section class="prose dark:prose-invert max-w-full">{{ .Content }}</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -105,7 +105,8 @@
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<section class="prose prose-invert">{{ .Content }}</section>
|
||||
<!-- FIXME: This lets section expand too much on larger screens-->
|
||||
<section class="prose prose-invert max-w-full">{{ .Content }}</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
{{ partialCached "author-links.html" . }}
|
||||
</div>
|
||||
</header>
|
||||
<section class="prose dark:prose-invert">{{ .Content }}</section>
|
||||
<!-- FIXME: This lets section expand too much on larger screens-->
|
||||
<section class="prose dark:prose-invert max-w-full">{{ .Content }}</section>
|
||||
</article>
|
||||
<section>
|
||||
{{ partial "recent-articles/main.html" . }}
|
||||
|
||||
Reference in New Issue
Block a user