Feature/image dialog #8
@@ -154,6 +154,7 @@
|
|||||||
|
|
||||||
html {
|
html {
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@@ -417,8 +418,25 @@
|
|||||||
/* Keep footer above sliding section-body during view transitions */
|
/* Keep footer above sliding section-body during view transitions */
|
||||||
.footer-vt {
|
.footer-vt {
|
||||||
view-transition-name: site-footer;
|
view-transition-name: site-footer;
|
||||||
|
animation: footer-enter var(--duration-slow) var(--ease-spring) both;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes footer-enter {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(100%);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::view-transition-group(site-footer) {
|
::view-transition-group(site-footer) {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Lightbox dialog backdrop */
|
||||||
|
dialog.lightbox::backdrop {
|
||||||
|
background-color: rgba(4, 28, 243, 0.25);
|
||||||
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export type { ButtonSize, ButtonVariant } from './Button';
|
|||||||
export { Button } from './Button';
|
export { Button } from './Button';
|
||||||
export type { CardBackground } from './Card';
|
export type { CardBackground } from './Card';
|
||||||
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardSidebar, CardTitle } from './Card';
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardSidebar, CardTitle } from './Card';
|
||||||
|
export { ImageLightbox } from './ImageLightbox';
|
||||||
export { InlineSvg } from './InlineSvg';
|
export { InlineSvg } from './InlineSvg';
|
||||||
export { Input, Textarea } from './Input';
|
export { Input, Textarea } from './Input';
|
||||||
export type { LinkVariant } from './Link';
|
export type { LinkVariant } from './Link';
|
||||||
|
|||||||
Reference in New Issue
Block a user