Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWANG Chucheng <me@wangchucheng.com>2022-02-10 07:40:11 +0300
committerGitHub <noreply@github.com>2022-02-10 07:40:11 +0300
commitacb3dc575ce5c37bafacfeea886f1ce845b86e21 (patch)
treec623974b1690eafe81dba515bb8e9dc0b20169a3 /layouts/authors/list.html
parent27dd13c1bba6160519247f6a73e6be1770fe7b89 (diff)
style: improve readability on mobile devices (#166)
Diffstat (limited to 'layouts/authors/list.html')
-rw-r--r--layouts/authors/list.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/layouts/authors/list.html b/layouts/authors/list.html
index b84a88f..02ac3a3 100644
--- a/layouts/authors/list.html
+++ b/layouts/authors/list.html
@@ -1,16 +1,16 @@
{{ define "main" }}
-<div class="ps-scrollbar bg-secondary-bg">
- <div class="max-w-screen-xl mx-auto">
- <div class="lg:w-3/4 mx-auto px-6 md:px-8 xl:px-12 py-12">
- {{ partial "widgets/about" . }}
+ <div class="pl-scrollbar bg-secondary-bg">
+ <div class="mx-auto max-w-screen-xl">
+ <div class="mx-auto px-6 py-12 md:px-8 lg:w-3/4 xl:px-12">
+ {{ partial "widgets/about" . }}
+ </div>
</div>
</div>
-</div>
-<div class="ps-scrollbar bg-primary-bg">
- <div class="max-w-screen-xl mx-auto">
- <div class="lg:w-3/4 mx-auto px-6 md:px-8 xl:px-12 py-12">
- {{ partial "components/summary-list-plain" .Pages }}
+ <div class="pl-scrollbar bg-primary-bg">
+ <div class="mx-auto max-w-screen-xl">
+ <div class="mx-auto px-6 py-12 md:px-8 lg:w-3/4 xl:px-12">
+ {{ partial "components/summary-list-plain" .Pages }}
+ </div>
</div>
</div>
-</div>
-{{ end }} \ No newline at end of file
+{{ end }}