更改 $theme-colors 中的主要颜色使 btn-primary 的文本颜色变为黑色而不是默认的白色
$theme-colors:(
"primary": #F58220
);
@import "../bootstrap/scss/bootstrap";
但是 将文本颜色设置为黑色而不是默认的白色。那是如何自动改变的呢?
编辑:当我编辑“主要”时,所有其他如危险等都会被删除。 我想做的就是编辑“primary”,保持其余部分不变。
$theme-colors:(
"primary": #F58220
);
@import "../bootstrap/scss/bootstrap";
But <button class="btn btn-primary w-100 text-center">Continue</button>
made the text color black instead of the default white. How did that get changed automatically ?
EDIT : When I edit "primary" then all others like danger etc get removed.
All I want to do is to edit "primary" keeping the remaining as it is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
$theme-colors:()
没有添加它,而是覆盖它。我通过覆盖
$primary
来解决。It looks like
$theme-colors:()
is not adding to it, but overwriting it.I solved by just overwriting
$primary
.