summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/css/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/assets/css/main.css')
-rw-r--r--themes/blowfish/assets/css/main.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/blowfish/assets/css/main.css b/themes/blowfish/assets/css/main.css
index 7f46d01..6db6960 100644
--- a/themes/blowfish/assets/css/main.css
+++ b/themes/blowfish/assets/css/main.css
@@ -16,6 +16,11 @@ body button {
@apply h-[1em] w-[1em];
}
+/* Scale SVG logos to appropriate size */
+.logo svg {
+ @apply h-[5rem] w-[5rem];
+}
+
/* Search */
#search-query::-webkit-search-cancel-button,
#search-query::-webkit-search-decoration,
@@ -128,6 +133,13 @@ code {
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
}
+/* Fix long URLs breaking out of article bounds on mobile */
+a {
+ word-break: break-word;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+}
+
/* -- Chroma Highlight -- */
/* Background */
.prose .chroma {