simonw / til

Today I Learned
https://til.simonwillison.net
Apache License 2.0
1.02k stars 81 forks source link

Less margin/padding on smaller screens #80

Closed simonw closed 10 months ago

simonw commented 10 months ago

Currently:

image

I'd like less margin on smaller screens.

simonw commented 10 months ago

The padding comes from here: https://github.com/simonw/til/blob/dcdb8aabed967e4ebc17d013fcd9a0cf5b9cc739/templates/til_base.html#L58-L61

simonw commented 10 months ago

1em looks better - I'll set that for widths smaller than 600px.

simonw commented 10 months ago
@media (max-width: 600px) {
    section.body {
        padding: 0em 1em;
    }
}
simonw commented 10 months ago

Oh this will take a while, it's going to regenerate every screenshot!

simonw commented 10 months ago

IMG_5320

I need to align the heading in the purple strip too.

simonw commented 10 months ago

Better!

IMG_5337