Dessert Selling

use bootstrap for Dessert Selling

porting record

// change theme
scss\custom\_variable.scss
$theme-colors: (
    "primary":    #3F5D45,
    "secondary":  #EAF0ED,
    "info":       #8DA291,
    "warning":    #FFE180
);

// build css for custom bootstrap theme
npm run css-c

// test theme change 
index.html 
    <button class="btn btn-primary">Button</button>
    <button class="btn btn-secondary">Button</button>
    <button class="btn btn-info">Button</button>
    <button class="btn btn-warning">Button</button>

Build Setup

// install dependencies
npm install

// build css for custom bootstrap theme
npm run css-c

// start mini-web server
npm run start

// simple build cumetom css + watch
npm run css-compile-sw