Skip to content

Commit

Permalink
fix(background_call): change position and color of glow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZakablukov committed Jun 17, 2022
1 parent c48349d commit 909e7a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/ui/BackgroundCall/BackgroundCall.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
height: @background-call-height;
z-index: @fifth-layer-zindex;
font-size: @micro-text-size;
position: fixed;
position: absolute;
top: 0;
left: 0;
right: 0;
text-align: center;
box-shadow: 0px 0px 30px rgba(39, 97, 253, 0.35),
0px 0px 20px rgba(39, 97, 253, 0.4);
box-shadow: 0px 0px 30px rgba(var(--flair-color-rgb), 0.35),
0px 0px 20px rgba(var(--flair-color-rgb), 0.4);
padding: 10px;
cursor: pointer;
&-name {
Expand Down
1 change: 1 addition & 0 deletions layouts/Layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
}

&.has-background-call {
position: relative;
padding-top: @background-call-height;
}
}
Expand Down

0 comments on commit 909e7a7

Please sign in to comment.