1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

Base: Correct flipped values in border-radius.html

Box 9 and Box 10 were in the wrong order somehow, so now they are not.
:^)
This commit is contained in:
Sam Atkins 2021-08-09 17:14:48 +01:00 committed by Andreas Kling
parent cb3e097663
commit e3cbd366c7

View file

@ -105,12 +105,12 @@
.box-9 { .box-9 {
background-color: magenta; background-color: magenta;
border-top-left-radius: 10px; border-radius: 15px;
} }
.box-10 { .box-10 {
background-color: magenta; background-color: magenta;
border-radius: 15px; border-top-left-radius: 10px;
} }
.box-11 { .box-11 {