1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Cards scale with device width

This commit is contained in:
2016-07-19 14:42:19 +02:00
parent 5f3ccf0be7
commit 15f454ea76

View File

@@ -4,7 +4,7 @@
{% block pagecontent %}
<div class="row">
{% for bookmark in bookmarks %}
<div class="col s4">
<div class="col s12 m6 l4">
{#
<div class="thumbnail">
<a href="{{ bookmark.url }}" title="{{ bookmark.url }}">
@@ -25,7 +25,9 @@
</div>
<div class="card-reveal green darken-3">
<span class="card-title white-text">{{ bookmark.title }}<i class="material-icons right">close</i></span>
<div><a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}">edit</a></div>
<div class="card-action">
<a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}">edit</a>
</div>
</div>
</div>
</div>