Skip to content

Commit

Permalink
Merge pull request #1010 from robintown/speaking-border
Browse files Browse the repository at this point in the history
Make audio activity border match the tile border radius
  • Loading branch information
robintown authored Apr 19, 2023
2 parents 2b5de6d + 3c7f01a commit 30a224e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/video-grid/VideoTile.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -174,6 +175,6 @@ limitations under the License.

@media (min-width: 800px) {
.videoTile {
border-radius: 20px;
--tileRadius: 20px;
}
}

0 comments on commit 30a224e

Please sign in to comment.