fix: styles
This commit is contained in:
parent
c447cf21e8
commit
79a7138d64
2 changed files with 15 additions and 0 deletions
11
src/assets/styles/pages/blogroll.css
Normal file
11
src/assets/styles/pages/blogroll.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
.blog--roll__icons {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--sizing-xs);
|
||||
}
|
||||
|
||||
.blog--roll__icons a {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
|
@ -4,6 +4,10 @@ layout: default
|
|||
permalink: /blogroll.html
|
||||
description: 'These are awesome blogs that I enjoy and you may enjoy too.'
|
||||
---
|
||||
{% capture css %}
|
||||
{% render "../assets/styles/pages/blogroll.css" %}
|
||||
{% endcapture %}
|
||||
<style>{{ css }}</style>
|
||||
<h2 class="page__header">{{ title }}</h2>
|
||||
<p>You can <a onclick="clicky?.log('/blogroll','OPML download', 'download');" href="/blogroll.opml">download an OPML file</a> containing all of these feeds and import them into your RSS reader.</p>
|
||||
<table>
|
||||
|
|
Reference in a new issue