diff options
-rw-r--r-- | config.toml | 6 | ||||
-rw-r--r-- | content/posts/2022-12-10-alpine-setup.md | 2 | ||||
-rw-r--r-- | themes/flamingo/assets/scss/_mobile_view.scss | 8 |
3 files changed, 11 insertions, 5 deletions
diff --git a/config.toml b/config.toml index 48c278a..6134ad4 100644 --- a/config.toml +++ b/config.toml @@ -4,9 +4,9 @@ title = "Yet Another Blog" theme = "flamingo" staticDir = ['static'] -[author] - name = "Gabriel A. Giovanini" - email = "mail@gabrielgio.me" +[params] + author="Gabriel A. Giovanini" + description="A gathering of information about some things I do on my spare time." [markup] defaultMarkdownHandler = "goldmark" diff --git a/content/posts/2022-12-10-alpine-setup.md b/content/posts/2022-12-10-alpine-setup.md index 1fa9027..1b3371b 100644 --- a/content/posts/2022-12-10-alpine-setup.md +++ b/content/posts/2022-12-10-alpine-setup.md @@ -99,7 +99,7 @@ http://dl-cdn.alpinelinux.org/alpine/v3.16/community Then run `apk update` and you will see the both repositories printed out. -Now we will install the necessary drivers for `xorg` to run properly. Firs +Now we will install the necessary drivers for xorg to run properly. Firs search for all video drivers `apk search xf86-video*` and install whatever you have for you computer (in my case `apk add apk add xf86-video-amdgpu`) diff --git a/themes/flamingo/assets/scss/_mobile_view.scss b/themes/flamingo/assets/scss/_mobile_view.scss index 25cb052..5d39c0b 100644 --- a/themes/flamingo/assets/scss/_mobile_view.scss +++ b/themes/flamingo/assets/scss/_mobile_view.scss @@ -191,7 +191,7 @@ nav { @include full-width-mobile pre { line-height: 1.2rem; - border: 1px solid #ddd; + border: 1.5px dashed; border-radius: 5px; overflow: auto; padding: $horizontal-layout-padding; @@ -206,6 +206,12 @@ nav { } } +p code { + border: 1px dashed; + border-radius: 5px; + padding: 1px; +} + // Style blockquotes // https://css-tricks.com/snippets/css/simple-and-nice-blockquote-styling/ // Worth looking at |