Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-1
QOS-React-1
/
packages
/
react-devtools-shared
/
src
/
devtools
/
views
/
Components
/
Skeleton.css
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
css
13 lines
191 Bytes
Copy permalink
Copy
Raw
1
.root
{
2
border-radius
:
0.25rem
;
3
animation
:
pulse
2s
infinite
;
4
}
5
6
@keyframes
pulse
{
7
0%
,
100%
{
8
background-color
:
none
;
9
}
10
50%
{
11
background-color
:
var
(
--color-dimmest
);
12
}
13
}