gpt4 book ai didi

sass - jekyll 中的全宽标题?

转载 作者:行者123 更新时间:2023-12-05 05:23:13 25 4
gpt4 key购买 nike

在我的 Jekyll 站点中,所有内容都有特定的宽度。据我了解,这来自 /css/main.scss :

$content-width:    800px;
$on-palm: 600px;
$on-laptop: 800px;

我尝试使用“本地”CSS 来覆盖这些。它没有用。

以上内容也会影响整个内容。

有什么方法可以使页眉 (/_includes/header.html) 为全宽并使其余内容保持默认居中宽度(从上面继承)?

最佳答案

_includes/header.html 中,更改 <div class="wrapper">对于 <div class="wrapper-header"> .

_sass/base.scss 添加:

.wrapper-header {
padding-right: $spacing-unit;
padding-left: $spacing-unit;
@extend %clearfix;

@include media-query($on-laptop) {
padding-right: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
}
}

关于sass - jekyll 中的全宽标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38705593/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com