mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
build(react): build26 from 45504a2b
This commit is contained in:
Vendored
+42
@@ -0,0 +1,42 @@
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* Supporting @keyframes, @properties and @theme for Tailwind CSS */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* Global @keyframes for all video skins (CSS & Tailwind) */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
@keyframes media-shake {
|
||||
0%,
|
||||
100% {
|
||||
translate: 0 0;
|
||||
}
|
||||
20% {
|
||||
translate: -6px 0;
|
||||
}
|
||||
40% {
|
||||
translate: 4px 0;
|
||||
}
|
||||
60% {
|
||||
translate: -2px 0;
|
||||
}
|
||||
80% {
|
||||
translate: 1px 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* Global @properties for all video skins (CSS & Tailwind) */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
@property --media-progress-fill {
|
||||
syntax: "<percentage>";
|
||||
inherits: true;
|
||||
initial-value: 0%;
|
||||
}
|
||||
|
||||
|
||||
@theme {
|
||||
--animate-media-shake: media-shake 300ms ease-in-out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user