diff options
author | Marc Coquand <marcc@fastmail.fr> | 2023-12-04 11:22:30 -0600 |
---|---|---|
committer | Marc Coquand <marcc@fastmail.fr> | 2023-12-04 11:22:30 -0600 |
commit | 2c6445f32891a5f7163fbf9b1d13613ba16832c7 (patch) | |
tree | 4aeeca9125e1f435e1d3bfbeb438917650abcf88 | |
parent | a3e970b41659ca9c79ddf04e4a9bbf43ce31e3b8 (diff) | |
download | wormhole-2c6445f32891a5f7163fbf9b1d13613ba16832c7.tar.gz wormhole-2c6445f32891a5f7163fbf9b1d13613ba16832c7.tar.bz2 wormhole-2c6445f32891a5f7163fbf9b1d13613ba16832c7.zip |
Remove overflow
-rw-r--r-- | bin/template.eml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/template.eml b/bin/template.eml index 51bd413..ec262cf 100644 --- a/bin/template.eml +++ b/bin/template.eml @@ -17,7 +17,7 @@ let render (posts: Post.t list) = <head>
<title>Sensemaking Galaxy</title>
</head>
- <body style="display:flex; flex-direction:column; align-items:center;">
+ <body style="display:flex; flex-direction:column; align-items:center; overflow-x: hidden">
<div class="to-column" style="align-items:center; display:flex; margin-top: 3rem; padding: 6px; gap: 3px; margin-bottom:
3rem;">
<h1 class="intro" style="color: white; letter-spacing: .5rem; display:flex;">SENSEMAKING GALAXY</h1>
|