From 11be2c96d3da0cf87bded11c116d5b02e58ea5ca Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 19 Mar 2021 11:21:00 +0100 Subject: [PATCH] Unify `border-radius` values We use 5px everywhere else, so we should try to stay consistent :) --- app/components/dependency-list/row.module.css | 2 +- app/components/front-page-list/item.module.css | 2 +- app/components/front-page-list/item/placeholder.module.css | 2 +- app/components/version-list/row.module.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/dependency-list/row.module.css b/app/components/dependency-list/row.module.css index 4566052bc29..01fe43258d0 100644 --- a/app/components/dependency-list/row.module.css +++ b/app/components/dependency-list/row.module.css @@ -11,7 +11,7 @@ font-size: 18px; padding: 15px 25px; background-color: white; - border-radius: 7px; + border-radius: 5px; box-shadow: var(--shadow); transition: all 300ms; diff --git a/app/components/front-page-list/item.module.css b/app/components/front-page-list/item.module.css index 395d21dd49b..396e7b2aae5 100644 --- a/app/components/front-page-list/item.module.css +++ b/app/components/front-page-list/item.module.css @@ -10,7 +10,7 @@ background-color: white; color: #525252; text-decoration: none; - border-radius: 7px; + border-radius: 5px; box-shadow: var(--shadow); transition: background-color 300ms; diff --git a/app/components/front-page-list/item/placeholder.module.css b/app/components/front-page-list/item/placeholder.module.css index 99d15167cc5..7be83a33b3c 100644 --- a/app/components/front-page-list/item/placeholder.module.css +++ b/app/components/front-page-list/item/placeholder.module.css @@ -11,7 +11,7 @@ padding: 0 15px; background-color: white; color: #525252; - border-radius: 7px; + border-radius: 5px; box-shadow: var(--shadow); cursor: wait; } diff --git a/app/components/version-list/row.module.css b/app/components/version-list/row.module.css index a122c9f8d09..5fb3a546f5b 100644 --- a/app/components/version-list/row.module.css +++ b/app/components/version-list/row.module.css @@ -10,7 +10,7 @@ font-size: 18px; padding: 15px 25px; background-color: white; - border-radius: 7px; + border-radius: 5px; box-shadow: var(--shadow); transition: all 300ms;