This is an automated email from the ASF dual-hosted git repository. mikexue pushed a commit to branch gh-pages-apache in repository https://gitbox.apache.org/repos/asf/eventmesh.git
commit 2d4cf5811d805876af5f7fc2c4ac383bb7fc8f52 Author: meizhouren <[email protected]> AuthorDate: Wed Mar 24 17:06:28 2021 +0800 wechat --- _includes/contact.html | 4 ++-- assets/css/creative.scss | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/_includes/contact.html b/_includes/contact.html index dca231d4d..7019b4d0f 100644 --- a/_includes/contact.html +++ b/_includes/contact.html @@ -7,13 +7,13 @@ <p class="text-muted mb-5">{{ section.text }}</p> </div> </div> - <div class="row justify-content-center"> + <div class="row justify-content-center text-center"> {% for action in section.actions %} {% assign fa = action.icon_type | default: "fas" %} <div class="col ml-auto"> <i class="{{ fa }} {{ action.icon }} fa-3x mb-3 text-muted"></i> <span class="d-block" href="{{ action.url }}">{{ action.title }}</span> - <span class="d-block text" href="{{ action.url }}">{{ action.text }}</span> + <span class="d-block text" style="text-align: left;" href="{{ action.url }}">{{ action.text }}</span> </div> {% endfor %} </div> diff --git a/assets/css/creative.scss b/assets/css/creative.scss index 45676fd0d..2f9a3f0e4 100644 --- a/assets/css/creative.scss +++ b/assets/css/creative.scss @@ -6320,10 +6320,19 @@ button.bg-dark:focus { } .d-block.text { + word-wrap: break-word; + word-break: break-all; + overflow: hidden; // text-align: left; font-size: 13px; } +.d-block.text img { + margin: 0 auto; + width: 40%; + margin-left: 30% +} + .d-table { display: table !important; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
