我想更改 laravel 页面中的背景颜色。基于我得到的参考。我应该在 _variables.scss 中进行更改。
// Body
$body-bg: #f8fafc; --> i change it to #000
// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
........
在视图文件中,我输入了代码:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>ICan</title>
<link rel="stylesheet" href="/css/app.css"> --> i enter this one
</head>
<body>
@yield('content')
@include('inc.sidebar')
</body>
</html>
然后我npm run serve
在 cmd 中执行但我的页面没有任何反应。背景颜色不会改变。我做错什么了吗?
请帮我。谢谢 :))