mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 01:06:51 -05:00
c89002f1b8
* Update TPR promotions to BS5 * Remove unused class names * Add responsive visibility in BS5 * Fix `OLFormControl` as `OLFormSelect` With this update, it fixes the Select when importing from Mendeley or Zotero, in BS3 and BS5 * Use spacing variables in SCSS GitOrigin-RevId: 8dd0e52a1674114bb3dc38fc4e3958a9c17ad5ac
29 lines
540 B
SCSS
29 lines
540 B
SCSS
@keyframes slide-in {
|
|
0% {
|
|
transform: translateY(25%);
|
|
opacity: 0;
|
|
bottom: var(--spacing-05);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
bottom: var(--spacing-06);
|
|
}
|
|
}
|
|
|
|
.fade-slide-in {
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease; /* Smooth opacity transition */
|
|
animation: slide-in 0.3s ease-in-out forwards;
|
|
animation-delay: 300ms;
|
|
}
|
|
|
|
.tpr-editor-prompt-container {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: var(--spacing-06);
|
|
right: var(--spacing-06);
|
|
width: 90%;
|
|
max-width: 512px;
|
|
}
|