© 2022 Hashnode
#sass
Introduction 🤩 Hey folks 👋🏻, Here I am again with a project for the Linode X Hashnode hackathon. I got to know about this Hackathon immediately when it went live but I didn't have a solid idea at t…
Using Bootstrap Theme We can use bootswatch, which has precompiled custom themes for bootstrap. Overriding CSS For simple uses, we can also override CSS properties to customize some colors and compone…
Intro The static site generator Jekyll allows you to add Bootstrap 5 in different ways. The easiest way is to use the precompiled CSS and JavaScript bundles, as described in my previous article. Alter…
Hello world. Let's continue learning about SASS and how we can use conditionals in SASS. In the previous article we learned about SASS Modules and how to use them. Let's have a look at how we can use …
SASS: What, why, and how? SASS is a CSS preprocessor that is designed to be used as a standalone preprocessor, or as part of a framework called Compass.SASS for CSS is very similar to CSS, for creatin…
Hi! In this post I will show how to create dark mode using Sass variables. HTML To switch between the modes we will use button. The rest is just test markup to test if our theme is working. <button cl…
Introduction It is a very common need in almost all applications to modify the components provided by 3rd party libraries. Those modifications are generally done for: Changing the styles Adding a mis…
Two weeks ago I publicly committed to doing the #100DaysOfCode challenge. I am proud to say that I am doing well, rediscovering the skills I previously held and enjoying the journey. I’m using freeCod…
Hi! In this post I will try to create custom modal popup with JS. For styling I will use Sass. How to set up Sass Install node and npm Install SASS from your command line using npm install -g sass On…
Why this is happening 🤔? TypeScript does not know that there are files other than .ts or .tsx, so it will throw an error if an import has an unknown file suffix. Lets jump to the solution 💡 First, y…