From 755c118a4f0db16763b79d3afb0f36a28f9ea490 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 18 Apr 2019 13:09:25 +0200 Subject: [PATCH] docs: add missing semicolon While it's legal to omit the last semicolon in a CSS block, it's generally not considered good style, as it makes it harder to add new lines. Signed-off-by: Erik Faye-Lund Reviewed-by: Eric Engestrom --- docs/mesa.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mesa.css b/docs/mesa.css index 8038832..5fa7bc3 100644 --- a/docs/mesa.css +++ b/docs/mesa.css @@ -42,7 +42,7 @@ iframe { position: absolute; left: 20em; right: 10px; - overflow: hidden + overflow: hidden; } .header { -- 2.7.4