-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove upstreamed ddoc stylings and update README #571
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
.ddoc > .toc { | ||
@apply hidden md:flex md:flex-col !important; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The styles here that adjust the ToC position are still necessary because if all of ddoc is in a grid it doesn't anchor the navigation content to the left with a fixed width so I think ddoc should be a flex where the categories list is on the left and the rest of the content takes up the rest of the space.
We could either keep that in here until the next deno_doc pass or migrate it to styles.css as something that is a deno-docs specific interpretation
> li | ||
> ul | ||
> li { | ||
@apply mt-1 !important; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whoops forgot to run |
moved stylings that are deno-docs specific inton the styles.css, and things still in the overrides css file are still to be backported.
deno_doc PR denoland/deno_doc#611