From 3c7f01a5107491af4aa6b3513a262d8c46ede2e9 Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Wed, 19 Apr 2023 10:24:47 -0400 Subject: [PATCH] Make audio activity border match the tile border radius --- src/video-grid/VideoTile.module.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/video-grid/VideoTile.module.css b/src/video-grid/VideoTile.module.css index 8da1f76..a83d1f0 100644 --- a/src/video-grid/VideoTile.module.css +++ b/src/video-grid/VideoTile.module.css @@ -20,7 +20,8 @@ limitations under the License. top: 0; width: var(--tileWidth); height: var(--tileHeight); - border-radius: 8px; + --tileRadius: 8px; + border-radius: var(--tileRadius); overflow: hidden; cursor: pointer; @@ -51,7 +52,7 @@ limitations under the License. right: -1px; bottom: -1px; content: ""; - border-radius: 20px; + border-radius: var(--tileRadius); box-shadow: inset 0 0 0 4px var(--accent) !important; } @@ -174,6 +175,6 @@ limitations under the License. @media (min-width: 800px) { .videoTile { - border-radius: 20px; + --tileRadius: 20px; } }