diff options
author | Eden Attenborough <eddie.atten.ea29@gmail.com> | 2023-02-10 11:16:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 11:16:34 +0000 |
commit | c334660d945c818eac02f22b1582d864ce3906bd (patch) | |
tree | 7eb540d36c705707519a520f30547572b1cee915 | |
parent | c9c6db89a10e331d3df9f1a60b5c3ea89b1e7c59 (diff) | |
parent | 655895f25c78fe7e0750e89c1e1d79fd2f7a29ef (diff) | |
download | boymoder.blog-c334660d945c818eac02f22b1582d864ce3906bd.tar.gz boymoder.blog-c334660d945c818eac02f22b1582d864ce3906bd.zip |
Merge pull request #4 from kira0x1/fix-sidebar-image
Fix sidebar image
-rwxr-xr-x | static/style.css | 4 | ||||
-rwxr-xr-x | templates/template.html.j2 | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 32dc92d..4a47ea7 100755 --- a/static/style.css +++ b/static/style.css @@ -125,6 +125,10 @@ aside { font-size: xx-small; } +#sidebarImage { + transform: translateX(10px); +} + .header_linker { font-size: x-small; } diff --git a/templates/template.html.j2 b/templates/template.html.j2 index b0bf62c..f80155d 100755 --- a/templates/template.html.j2 +++ b/templates/template.html.j2 @@ -33,7 +33,7 @@ </ul> </nav> </div> - <a href="/"> + <a id=sidebarImage href="/"> <img alt="{{image[0]}}" src="{{image[1]}}"> </a> </div> |