mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-12 19:20:45 +02:00
Enhance .offline-dot style specificity
Added !important to the box-shadow property in the .offline-dot class in common.css to ensure it takes precedence over conflicting styles while keeping other properties unchanged.
This commit is contained in:
parent
eef2414ae2
commit
9a5c93036a
@ -245,16 +245,16 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.offline-dot {
|
.offline-dot {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
background: red;
|
background: red;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin-left: 0.5em;
|
margin-left: 0.5em;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -1px;
|
top: -1px;
|
||||||
animation: glow 3s infinite;
|
animation: glow 3s infinite;
|
||||||
box-shadow: 0 0 10px red, 0 0 20px red;
|
box-shadow: 0 0 10px red, 0 0 20px red !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes glowRed {
|
@keyframes glowRed {
|
||||||
|
Loading…
Reference in New Issue
Block a user