tidio-css
v1.6.6
Published
CSS library that helps creating Tidio tools in one style
Downloads
24
Readme
How to start using?
Just install with npm or yarn:
npm install tidio-css
and include from node_modules:
<link href='/node_modules/tidio-css/css/styles.css' rel='stylesheet' type='text/css'>
or you can use unpkg CDN:
https://unpkg.com/tidio-css/css/styles.css
and link it simply:
<link href='https://unpkg.com/tidio-css/css/styles.css' rel='stylesheet' type='text/css'>
How to start developing?
You can just run command
yarn run plz-install-ruby-stuff
or follow bellow instructions:
1. Installing Ruby Gems
sudo apt-get install rubygems && sudo apt-get install ruby-dev
2. Installing SASS
Full instruction is available on Official SASS Docs
#####tl;dr (linux)
If you don't have sass on your machine:
sudo gem install sass --no-user-install
then:
gem install sass
or if line upon doesn't work:
sudo gem install sass
and then check if everything gone correct:
sass -v
Congratulations! You've successfully installed Sass. #####Go and play.