CSS errors when opening a page

1
When I try to open a page I always get two errors from that page. 404 - file not found for file: styles/css/lib/false 404 - file not found for file: styles/css/custom/false Is there any solution for this problem?
asked
3 answers
4

Check your _custom-variables.scss in your theme\sass\custom around line 69:

// Font Family Import
$font-family-import:    false;
@import url($font-family-import);
answered
1

I had those too. I took the previous version of the theme and it was OK. I think this was fixed recently so updating your theme would do the trick.

answered
0

It looks like this in the file

    // Font Family Import / Google Fonts - Roboto
$font-family-import:                    'https://fonts.googleapis.com/css?family=Roboto';
@import url($font-family-import);
answered