mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-17 09:33:38 -05:00
Upgrade docs
This commit is contained in:
36
docs/src/app/components/pages/styles.css
Normal file
36
docs/src/app/components/pages/styles.css
Normal file
@@ -0,0 +1,36 @@
|
||||
/* Override nextra styles restricting width */
|
||||
|
||||
:root {
|
||||
--nextra-content-width: unset !important;
|
||||
}
|
||||
|
||||
header.nextra-navbar {
|
||||
--nextra-content-width: 90rem;
|
||||
}
|
||||
|
||||
article {
|
||||
padding-inline: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
article div.x\:mt-16:last-child:empty {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#hero {
|
||||
animation-name: hero;
|
||||
animation-duration: 1500ms;
|
||||
animation-delay: 500ms;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
|
||||
@keyframes hero {
|
||||
from {
|
||||
translate: 0 8rem;
|
||||
}
|
||||
to {
|
||||
translate: 0 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user