You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
Replace Sass variables with custom properties - mx_Indicator (#10808)
This commit is contained in:
@ -262,12 +262,12 @@ limitations under the License.
|
||||
position: absolute;
|
||||
right: -3px;
|
||||
top: -3px;
|
||||
width: $dot-size;
|
||||
height: $dot-size;
|
||||
width: var(--RoomHeader-indicator-dot-size);
|
||||
height: var(--RoomHeader-indicator-dot-size);
|
||||
border-radius: 50%;
|
||||
transform: scale(1);
|
||||
background: rgba($pulse-color, 1);
|
||||
box-shadow: 0 0 0 0 rgba($pulse-color, 1);
|
||||
background: rgba(var(--RoomHeader-indicator-pulseColor), 1);
|
||||
box-shadow: 0 0 0 0 rgba(var(--RoomHeader-indicator-pulseColor), 1);
|
||||
animation: mx_Indicator_pulse 2s infinite;
|
||||
animation-iteration-count: 1;
|
||||
|
||||
|
Reference in New Issue
Block a user