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;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.article-content a {
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
|
@ -40,9 +40,7 @@
|
|||
<div class="row">
|
||||
<div class="col-12 col-lg-8 mx-auto">
|
||||
<article class="article-content">
|
||||
<div class="prose">
|
||||
{{ article.content|safe }}
|
||||
</div>
|
||||
{{ article.content|safe }}
|
||||
</article>
|
||||
|
||||
<!-- Related Links -->
|
||||
|
@ -139,10 +137,7 @@
|
|||
Back to Articles
|
||||
</a>
|
||||
<div class="d-flex gap-2">
|
||||
<button class="btn btn-outline-secondary btn-sm" onclick="window.print()">
|
||||
<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)">
|
||||
<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-share"></i> Share
|
||||
</button>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue