puikinsh/ElaAdmin

Where are the SCSS files that are imported in style.scss

Mahan-F opened this issue · 4 comments

I am trying to implement this template into an application I have but i'm having trouble compiling the style.scss file because lines 14 and 15 are trying to import something which does not exist in the directory.

@import "variables";
@import "todo-list";

Where can I get these files?

I'm experiencing the same issue. The SCSS files are missing from the repo.

i am same,

Here's the _variables.scss file I created with reference from style.css

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");

$default-font: "Open Sans", sans-serif;

$text-color-1: #00c292;
$text-color-2: #ab8ce4;
$text-color-3: #03a9f3;

$white: #fff;
$gray: #868e96;
$gray-200: rgba(233, 236, 239);
$gray-600: $gray;
$active-green: #49a342;

$flat-color-1: #00c292;
$flat-color-2: #ab8ce4;
$flat-color-3: #03a9f3;
$flat-color-4: #fb9678;

/* Left panel Navbar */
$menu-bg: #fff;
$menu-active-bg: #fafafa;
$menu-active: #03a9f3;
$menu-color: #607d8b;

/* Right panel */
$container-bg: #f1f2f7;
$header-bg: #fff;
$header-icon: #99abb4;
$search-bg: #131c21;

Thank you @MrJohn6774.
Can I also find the todo-list file from someone? Thanks in advance