aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/partials
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-10-08 03:35:51 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-10-08 03:35:51 +0200
commitfa2e352c3763794006cb30c3036ebf9e5b08bcc4 (patch)
treee3faeeff07b0f7ccd0d26b2a9feec45b4e006228 /themes/simple/layouts/partials
parent2c63544757cacc6d94487c01b9163aba9e8eb76a (diff)
downloadmitjafelicijan.com-fa2e352c3763794006cb30c3036ebf9e5b08bcc4.tar.gz
Added support for rich comments
Diffstat (limited to 'themes/simple/layouts/partials')
-rw-r--r--themes/simple/layouts/partials/tailwind.html18
1 files changed, 16 insertions, 2 deletions
diff --git a/themes/simple/layouts/partials/tailwind.html b/themes/simple/layouts/partials/tailwind.html
index d226ade..616ab3a 100644
--- a/themes/simple/layouts/partials/tailwind.html
+++ b/themes/simple/layouts/partials/tailwind.html
@@ -142,11 +142,11 @@
142 } 142 }
143 143
144 .cactus-container .cactus-comment .cactus-comment-avatar img { 144 .cactus-container .cactus-comment .cactus-comment-avatar img {
145 @apply w-10 h-10 rounded-full; 145 @apply w-8 h-8 rounded-full;
146 } 146 }
147 147
148 .cactus-container .cactus-comment .cactus-comment-avatar-placeholder { 148 .cactus-container .cactus-comment .cactus-comment-avatar-placeholder {
149 @apply w-10 h-10 rounded-full bg-gray-300; 149 @apply w-8 h-8 rounded-full bg-gray-300;
150 } 150 }
151 151
152 .cactus-container .cactus-comment .cactus-comment-header { 152 .cactus-container .cactus-comment .cactus-comment-header {
@@ -161,6 +161,20 @@
161 @apply text-gray-400 text-sm; 161 @apply text-gray-400 text-sm;
162 } 162 }
163 163
164 .cactus-container .cactus-comment .cactus-message-text code {
165 @apply bg-yellow-100 rounded px-2 py-1 text-xs font-medium;
166 }
167
168 /* Unordered list */
169 .cactus-container .cactus-comment .cactus-message-text ul {
170 @apply list-disc pl-2 md:pl-6;
171 }
172
173 /* Ordered list */
174 .cactus-container .cactus-comment .cactus-message-text ol {
175 @apply list-decimal pl-2 md:pl-6;
176 }
177
164 /* Cactus: Login */ 178 /* Cactus: Login */
165 .cactus-container .cactus-login-form-wrapper { 179 .cactus-container .cactus-login-form-wrapper {
166 @apply border mb-6 p-3 relative rounded; 180 @apply border mb-6 p-3 relative rounded;