diff --git a/slides/lectures/resources/timers/slides.md b/slides/lectures/resources/timers/slides.md
index 3299f7f61fa9276281dcec92b292ce96585dc209..52e87b5b4b4399f46ae9c718cd5aaf73c241b74d 100644
--- a/slides/lectures/resources/timers/slides.md
+++ b/slides/lectures/resources/timers/slides.md
@@ -212,7 +212,7 @@ read the number of elapsed Îźs since reset
 
 #### Reading the time elapsed since restart
 
-```rust{1,5|2,6|4,7,8|all}
+```rust {1,5|2,6|4,7,8|all}
 const TIMERLR: *const u32 = 0x400b_000c;
 const TIMERHR: *const u32 = 0x400b_0008;
 
@@ -228,7 +228,7 @@ The **reading order maters** as reading `TIMELR` latches the value in `TIMEHR` (
 :: right ::
 
 <div align="center">
-    <img src="./rp2350_timer_registers_1.png" class="rounded w-100">
+    <img src="./rp2350_timer_registers_1.png" class="rounded w-90">
 </div>
 
 ---