diff options
author | Erik Faye-Lund <[email protected]> | 2019-04-18 13:09:25 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-05-02 08:45:57 +0000 |
commit | 755c118a4f0db16763b79d3afb0f36a28f9ea490 (patch) | |
tree | 001d39383cf6e6e5a7dc934571c3b391422250a3 /docs/mesa.css | |
parent | 3085eb90a0e737fb1909f18a2b5b91946f3c7ee8 (diff) |
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 <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/mesa.css')
-rw-r--r-- | docs/mesa.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/mesa.css b/docs/mesa.css index 8038832adbc..5fa7bc34d77 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 { |