Skip to content

Commit 71358aa

Browse files
committed
fix: inline code responsiveness
1 parent ad12beb commit 71358aa

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.changeset/small-parrots-turn.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"r.obin.ch": patch
3+
---
4+
5+
Fix inline code responsiveness

src/content/blog/2024/09/30/gems-of-september-24.en.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ I've found `:placeholder-shown` useful in combination with `:focus-within` to st
2424
}
2525
```
2626

27+
One could think that this can be achieved with `:empty` as well, but this pseudo-class selects elements with no children, what is always true for `<input>`-elements.
28+
2729
## Linux
2830

2931
### DNS of Wireguard NetworkManager config, is not applied
@@ -34,6 +36,10 @@ When installed my new laptop, I've made the mistake to install `dhcpcd`. Then wh
3436

3537
Gnome Online Accounts are integrated into Evolution. Evolution displays this accounts with a generated name, that is assembled from the username and the accounts server. If you want to rename them, you can edit the config file that is usually stored in `/home/user/.config/evolution/sources`. Change the value of `DisplayName` to a name of choice.
3638

39+
### Parallel downloads with Pacman
40+
41+
By default the package manager (or short pacman) downloads the packages sequentially. This can be changed in its config file, which resides at `/etc/pacman.conf`. Change or uncomment to `ParallelDownloads = 5`.
42+
3743
## Tools
3844

3945
### Visual Studio Code: Better Git Line Blame

src/layouts/DefaultLayout.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,10 @@ code, kbd {
256256
padding: 0.15rem;
257257
}
258258

259+
p code {
260+
word-wrap: break-word;
261+
}
262+
259263
pre code {
260264
padding: 0;
261265
}

0 commit comments

Comments
 (0)