box sizing is now border to fix minor hiccups
This commit is contained in:
parent
ce7860ebc6
commit
125765280c
2 changed files with 8 additions and 4 deletions
6
TODO
6
TODO
|
@ -1,7 +1,7 @@
|
|||
handle dark/light theming correctly (https://www.joshwcomeau.com/react/dark-mode/) seems useful for that
|
||||
|
||||
get RSS feed up and running
|
||||
|
||||
Fix articles with inline html in them and/or links
|
||||
|
||||
ico?
|
||||
|
||||
analytics
|
||||
|
@ -18,4 +18,4 @@ analytics
|
|||
|
||||
~~position code blocks in a way I like~~
|
||||
|
||||
Fix HackBU article
|
||||
~~handle dark/light theming correctly (https://www.joshwcomeau.com/react/dark-mode/) seems useful for that~~
|
||||
|
|
|
@ -15,6 +15,7 @@ a:hover {
|
|||
}
|
||||
|
||||
#header {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
gap: 0.5em;
|
||||
|
@ -25,6 +26,7 @@ a:hover {
|
|||
}
|
||||
|
||||
#content {
|
||||
box-sizing: border-box;
|
||||
display: block flex;
|
||||
margin: 1em;
|
||||
padding: 1em;
|
||||
|
@ -61,12 +63,13 @@ blockquote {
|
|||
}
|
||||
|
||||
pre {
|
||||
box-sizing: border-box;
|
||||
min-height: 2em;
|
||||
/*
|
||||
* Not sure why this isn't the same as the #content width.
|
||||
* Is the font size different for some reason?
|
||||
* */
|
||||
max-width: 82em;
|
||||
max-width: 75em;
|
||||
width: fit-content;
|
||||
overflow:scroll;
|
||||
/*background: #444;*/
|
||||
|
@ -76,6 +79,7 @@ pre {
|
|||
}
|
||||
|
||||
hr {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue