mirror of
https://github.com/bringout/oca-web.git
synced 2026-04-20 07:32:06 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
327 B
SCSS
23 lines
327 B
SCSS
.oe_cp_refresher {
|
|
margin: auto 0 auto 0;
|
|
user-select: none;
|
|
}
|
|
|
|
.o_content {
|
|
&__refresh {
|
|
animation: web_refresh 0.6s ease;
|
|
}
|
|
}
|
|
|
|
@keyframes web_refresh {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
transform: translateY(10px);
|
|
opacity: 0.6;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|