Compare commits

5 Commits

Author SHA1 Message Date
50d717a0e0 Merge pull request 'fix(home.scss): improve mobile responsiveness for latest projects' (#9) from dev into master
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 18s
Reviewed-on: #9
2025-08-28 13:22:04 +02:00
ee96d04708 fix(home.scss): improve mobile responsiveness for latest projects
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 16s
Build Zola Website / build (pull_request) Has been skipped
2025-08-28 13:21:38 +02:00
b84d0b4d2c Merge pull request 'Next version changes' (#8) from dev into master
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
Reviewed-on: #8
2025-08-28 13:14:55 +02:00
ff9e76676d fix(home.scss): prevent project content from breaking on large screens
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
Build Zola Website / build (pull_request) Has been skipped
- Fixes layout issues on higher resolutions where content stretched incorrectly
2025-08-28 13:11:02 +02:00
cedca87a54 fix(about.md): update job title to include proper capitalization of "DevOps"
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
Build Zola Website / build (pull_request) Has been skipped
2025-08-27 19:37:02 +02:00
2 changed files with 5 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ As a member of [Microlab](https://microlab.space), the university's hackerspace,
## Work ## Work
Currently employed as a Linux Devops engineer. Most of my work involves Debian-based systems on various hardware platforms. Currently employed as a Linux DevOps engineer, focusing primarily on Debian-based systems across a variety of hardware platforms.
I also create custom websites from time to time. I also create custom websites from time to time.

View File

@@ -35,7 +35,9 @@
.project { .project {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: 1rem 30%; margin: 1rem 0;
width: 100%;
max-width: 40%;
gap: 1rem; gap: 1rem;
.title { .title {
font-size: 1.2rem; font-size: 1.2rem;
@@ -55,6 +57,7 @@
} }
.latest-projects-posts .project { .latest-projects-posts .project {
margin: 1rem 5%; margin: 1rem 5%;
max-width: 90%;
} }
} }