From e3cbd366c73e035a609966c3b199805c236f464b Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 9 Aug 2021 17:14:48 +0100 Subject: [PATCH] Base: Correct flipped values in border-radius.html Box 9 and Box 10 were in the wrong order somehow, so now they are not. :^) --- Base/res/html/misc/border-radius.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Base/res/html/misc/border-radius.html b/Base/res/html/misc/border-radius.html index afa8223509..9cea43b6fc 100644 --- a/Base/res/html/misc/border-radius.html +++ b/Base/res/html/misc/border-radius.html @@ -105,12 +105,12 @@ .box-9 { background-color: magenta; - border-top-left-radius: 10px; + border-radius: 15px; } .box-10 { background-color: magenta; - border-radius: 15px; + border-top-left-radius: 10px; } .box-11 {