Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style fixies #20

Merged
merged 11 commits into from
Nov 27, 2017
4 changes: 3 additions & 1 deletion accounts/templates/accounts/entries/_entry_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<div class="row CSEntryListItemMain">
<div class="col-md-9 col-sm-6 col-xs-12">
<h4>{{ blog_entry.title }}</h4>
<a href="{{ blog_entry.url }}" target="_blank">{{ blog_entry.url }}</a>
<div style="word-break: break-all;">
<a href="{{ blog_entry.url }}" target="_blank">{{ blog_entry.url }}</a>
</div>
</div>

<div class="col-md-3 col-sm-6 col-xs-12">
Expand Down