hedgehog-genki
@hedgehog-genki

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Sass::SyntaxError in controller名#action名の解消

解決したいこと

Railsでアプリを作成中です。
HTMLテンプレートファイルで作成したSCSSファイルを読み込んだところエラーが発生しました。
解決方法をご教授いただけませんでしょうか。

発生している問題・エラー

Sass::SyntaxError in Home#index
Showing /app/views/layouts/application.html.erb where line #8 raised:

Undefined mixin 'breakpoint'.

該当するソースコード

読み込めないファイル「_page.scss」

// Ensures page width is always >=320px.
        @include breakpoint('<=xsmall') {
            html, body {
                min-width: 320px;
            }

自分で試したこと

/app/assets/stylesheets/application.scssに

/*
 *(省略)
 *= require_tree .
 *= require_self
 */
@import '_page.scss'
@import '_page'

#'_page.scss'と'_page'それぞれテストしてみました

を記述してみましたが、エラーは解消されませんでした。

何か解消方法はありますでしょうか?

0

No Answers yet.

Your answer might help someone💌