feat: quotes
This commit is contained in:
parent
00866fd73a
commit
5913cc3b88
20 changed files with 311 additions and 22 deletions
|
|
@ -49,7 +49,6 @@
|
|||
height: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
.clickable:hover {
|
||||
|
|
@ -57,6 +56,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: 400% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 0;
|
||||
}
|
||||
}
|
||||
|
||||
.animate-shimmer {
|
||||
animation: shimmer 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
:root {
|
||||
--background: 0 0% 100%;
|
||||
--foreground: 240 10% 3.9%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue