Skip to content
Snippets Groups Projects
Commit 7243d3bb authored by Tainan Felipe's avatar Tainan Felipe
Browse files

Fix css variable was not working

parent c6284a0f
No related branches found
No related tags found
No related merge requests found
@import "/imports/ui/stylesheets/variables/_all";
:root {
--color-white-with-transparency: #ffffff40;
}
.videoCanvas {
--cam-dropdown-width: 70%;
......@@ -51,7 +54,7 @@
right: 0;
bottom: 0;
left: 0;
border: 5px solid rgba(var(--color-white), .25);
border: 5px solid var(--color-white-with-transparency);
border-radius: 5px;
opacity: 0;
transition: opacity .1s;
......@@ -80,7 +83,7 @@
@extend %media-area;
position: absolute;
background-color: var(--color-gray);
color: rgba(var(--color-white), .25);
color: var(--color-white-with-transparency);
font-size: 2.5rem;
text-align: center;
white-space: nowrap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment