test02/node_modules/@vuepress/theme-default/lib/client/styles/_mixins.scss
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

21 lines
335 B
SCSS

@import 'variables';
@mixin content-wrapper {
max-width: var(--content-width);
margin: 0 auto;
padding: 2rem 2.5rem;
@media (max-width: $MQNarrow) {
padding: 2rem;
}
@media (max-width: $MQMobileNarrow) {
padding: 1.5rem;
}
}
@mixin dropdown-wrapper {
overflow: hidden;
transition: height 0.1s ease-out;
}