Make audio activity border match the tile border radius
This commit is contained in:
parent
2b5de6db03
commit
3c7f01a510
1 changed files with 4 additions and 3 deletions
|
@ -20,7 +20,8 @@ limitations under the License.
|
||||||
top: 0;
|
top: 0;
|
||||||
width: var(--tileWidth);
|
width: var(--tileWidth);
|
||||||
height: var(--tileHeight);
|
height: var(--tileHeight);
|
||||||
border-radius: 8px;
|
--tileRadius: 8px;
|
||||||
|
border-radius: var(--tileRadius);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
@ -51,7 +52,7 @@ limitations under the License.
|
||||||
right: -1px;
|
right: -1px;
|
||||||
bottom: -1px;
|
bottom: -1px;
|
||||||
content: "";
|
content: "";
|
||||||
border-radius: 20px;
|
border-radius: var(--tileRadius);
|
||||||
box-shadow: inset 0 0 0 4px var(--accent) !important;
|
box-shadow: inset 0 0 0 4px var(--accent) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -174,6 +175,6 @@ limitations under the License.
|
||||||
|
|
||||||
@media (min-width: 800px) {
|
@media (min-width: 800px) {
|
||||||
.videoTile {
|
.videoTile {
|
||||||
border-radius: 20px;
|
--tileRadius: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue