improve link styling and buttons
This commit is contained in:
parent
9341950c26
commit
bd292d5424
2 changed files with 7 additions and 7 deletions
|
@ -12529,4 +12529,9 @@ a.btn:focus {
|
||||||
background-color: #f8f9fa;
|
background-color: #f8f9fa;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-content a {
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
|
@ -40,9 +40,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-lg-8 mx-auto">
|
<div class="col-12 col-lg-8 mx-auto">
|
||||||
<article class="article-content">
|
<article class="article-content">
|
||||||
<div class="prose">
|
{{ article.content|safe }}
|
||||||
{{ article.content|safe }}
|
|
||||||
</div>
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<!-- Related Links -->
|
<!-- Related Links -->
|
||||||
|
@ -139,10 +137,7 @@
|
||||||
Back to Articles
|
Back to Articles
|
||||||
</a>
|
</a>
|
||||||
<div class="d-flex gap-2">
|
<div class="d-flex gap-2">
|
||||||
<button class="btn btn-outline-secondary btn-sm" onclick="window.print()">
|
<button class="btn btn-outline btn-sm" onclick="navigator.share ? navigator.share({title: '{{ article.title }}', url: window.location.href}) : navigator.clipboard.writeText(window.location.href)">
|
||||||
<i class="bi bi-printer"></i> Print
|
|
||||||
</button>
|
|
||||||
<button class="btn btn-outline-secondary btn-sm" onclick="navigator.share ? navigator.share({title: '{{ article.title }}', url: window.location.href}) : navigator.clipboard.writeText(window.location.href)">
|
|
||||||
<i class="bi bi-share"></i> Share
|
<i class="bi bi-share"></i> Share
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue