style: spacing and text sizes
This commit is contained in:
parent
5b091337cf
commit
f8e07c3195
3 changed files with 11 additions and 4 deletions
|
@ -4,7 +4,7 @@ import Icon from 'astro-iconify'
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<section>
|
<section>
|
||||||
Remove distractions.<br />Save for later.
|
Remove distractions. Save for later.
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,9 +23,8 @@ import Icon from 'astro-iconify'
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #333;
|
color: #333;
|
||||||
font-size: small;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
border-top: 1px solid #eee;
|
font-size: small;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
width: 1.25rem;
|
width: 1.25rem;
|
||||||
|
|
|
@ -75,5 +75,11 @@ const datePublished =
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
p, table, ul, img {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -59,7 +59,9 @@ const appTitle = `Cozy 🧸${meta.title && ` | ${meta.title}`}`;
|
||||||
#app-wrapper {
|
#app-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 650px;
|
max-width: 650px;
|
||||||
margin: 0.5em auto 1em;
|
margin: 0 auto;
|
||||||
|
padding: 0.5rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
}
|
}
|
||||||
#main-content {
|
#main-content {
|
||||||
* {
|
* {
|
||||||
|
|
Loading…
Reference in a new issue