© 2023 Hashnode
#sass
Intro CSS, What is CSS? If HTML is the skeleton of the human body, CSS is the skin, the color of the eyes, the haircut... You can't pretend to build websites or apps without knowing CSS. But there are…
I am excited to announce that I have completed Uniqify, a Duplicate Character Remover app that was part of the GitHub Octernship program. Using ReactJS, I was able to develop a two-screen app that all…
To provide some context for this article, I must first elaborate on some details. I am currently in the process of pursuing a career as a web developer, which I began just three months ago. Despite having no prior experience in programming …
Introduction Are you tired of writing repetitive CSS code for your website's layout, colours, and typography? Do you want to make your code more modular and maintainable? Look no further than SCSS, th…
Before the summer, I had the pleasure to read this article that talked about splitting your css into multiple files to optimize file size. At the time, I thought: well, this is nice, but that is going…
TL;DR This article focuses on how to use and set up Sass to CSS for your React projects. If you’re interested in learning more about Sass CSS, this article is perfect for you. Introduction Syntactical…
@mixin flex_property($var1) { display: flex; align-items: center; justify-content: center; flex-direction: $var1; } .container{ background-color: $bg-color; padding: 1rem; width: 28rem; margin: 2rem auto; …
Welcome 🙏 to the world of Sass! This comprehensive guide will help you enhance your CSS development skills and bring your projects to the next level. We'll dive into Sass's key concepts and technique…
Angular 15, offers a wealth of features and capabilities. But when it comes to styling, not all developers prefer to stick to traditional CSS. That's why I have created a Stackblitz starter project sp…
SCSS is a CSS pre-processor. We should use SCSS to reduce the repetition of CSS. All Concepts - a. variable b. nesting c. import d. mixin e. extend f. functions (i) string (ii) number (iii) list (iv) map (v) selector (vi) intr…