Setting up Bulma with SASS (SCSS) using NPM

  Рет қаралды 9,985

Genoville

Genoville

Күн бұрын

Пікірлер
@Genoville
@Genoville 4 жыл бұрын
Hotspots Intro: 00:00 Using CDN method to use Bulma: 01:30 Intro to NPM: 02:49 NodeJS Installation: 03:18 GitBash Installation: 03:58 Set up Bulma using NPM: 04:33 Set up SASS Dependencies: 05:22
@slippinchillin
@slippinchillin 2 жыл бұрын
Great video! I will give this 5/5 For anyone figuring out how to set up Bulma customization, this is the perfect video for you. You have everything you want to know here, and nothing extra. Weird accent tho 😂
@Genoville
@Genoville 2 жыл бұрын
Yea, English isn't my first language.
@janusu
@janusu 4 жыл бұрын
High marks for this tutoral! And timely for me, as I've just set out to build a site with the Bulma framework and you had only just published this a week before. The frustrating thing is that the Bulma website had all the documentation I needed, as you showed us, but they didn't really make it clear how to find it. Your walkthrough on the NPM setup was invaluable and saved a lot of time. Thank you for this!
@mateodifran
@mateodifran 2 жыл бұрын
great tutorial man!, still works!
@thomascree9964
@thomascree9964 3 жыл бұрын
omg you are my hero! i just made a project in tailwind using npm with no idea what was going on. I decided to try my luck with bulma npm and your video had not only taught me how to set up the project but what each step is for! i am saving this video to watch for every project. Thank you so much sir!
@Smboosbh
@Smboosbh 3 жыл бұрын
Nice and sweet. Thank you very much for this tutorial.
@jtothey1993
@jtothey1993 2 жыл бұрын
excellent video. I was stuck on this, thanks!
@rishandilruk9365
@rishandilruk9365 3 жыл бұрын
very helpfull keep it up bro
@komorebi4045
@komorebi4045 2 жыл бұрын
Thankyou im a beginner in using bulma and i didnt really understand the documentation.
@birdbrainsolutions6112
@birdbrainsolutions6112 4 жыл бұрын
Great video, thank you for creating it! Please consider creating a video on how to setup bulma and sass with underscores theme
@ethansausa8588
@ethansausa8588 4 жыл бұрын
Thank you man this was a great video and was very helpful for me. I appreciate it!
@jimbojoho
@jimbojoho 3 жыл бұрын
Thank you SO much! Great tutorial 😊
@geetanjalivadehra8197
@geetanjalivadehra8197 4 жыл бұрын
Thank you for this tutorial!
@alexhunter4800
@alexhunter4800 4 жыл бұрын
thanks man! helped a lot!
@kasperkat2004
@kasperkat2004 4 жыл бұрын
Excellent. Thank you
@Sheynan55
@Sheynan55 4 жыл бұрын
Thanks this video was a life saver. Although the git-bash was unnecessary imo.
@Genoville
@Genoville 4 жыл бұрын
Yes, that's optional. You can use cmd
@knyazevtaras
@knyazevtaras 4 жыл бұрын
Very good!
@thomascree9964
@thomascree9964 3 жыл бұрын
If you have a video on adding custom styles, colors etc to bulma projects that would be amazing!
@Noriyak1
@Noriyak1 4 жыл бұрын
normal ppl: spending hours or days to learn sass, nodejs and bulma me: watching some indian dude and and learn the same amount
@Genoville
@Genoville 4 жыл бұрын
Lol
@vishnuharshan2299
@vishnuharshan2299 4 жыл бұрын
I can’t change txt file extension to scss as explained in the video. It’s still remains as text document even I have changed the name into mystyle.scss. I tried to search for it online but no relevant solution found. I can change it to css though but It won’t help to further steps right? Everything else worked as it’s supposed to be till this point. Any suggestions?
@Genoville
@Genoville 4 жыл бұрын
Open any folder > in the menu bar where you have file, home etc, click on view > check/tick "File extension" option. If this option is not checked, .txt part remains hidden. So even when you save it as file.scss, it gets saved as file.scss.txt (.txt being hidden)
@vishnuharshan2299
@vishnuharshan2299 4 жыл бұрын
@@Genoville thanks brother that helped, And I’m getting error (code ELIFECYCLE) while run $ npm run css-build after altered script section in packet.json file . Redone everything one by one several times still getting the same error. Gone through several websites for solution but nothing helped. Please help if you know how to correct this
@antoniosuarez7516
@antoniosuarez7516 3 жыл бұрын
​@@vishnuharshan2299 i was having the same error because mystyles.scss file name was written wrong
@coreyguitars533
@coreyguitars533 4 жыл бұрын
Thanks man
@dilancroos3504
@dilancroos3504 Жыл бұрын
Can you do a dark mode theme using Bulma scss
@Genoville
@Genoville Жыл бұрын
Yes. If you go to bulma website > documentation > elements > button for example, you can see there are the default dark button colors too. You can use your own colors too and you can use a bit of javascript to do the switching between the themes.
@pieter-janscheir5618
@pieter-janscheir5618 4 жыл бұрын
Please use VS Code, so much easier and you'd use only 1 IDE. Please make a video on custom styling please.
@letcode
@letcode 4 жыл бұрын
Hi, nice tutorial, just want to know how to remove unwanted css from bulma.css. Thank you 😌
@Genoville
@Genoville 4 жыл бұрын
If you are using sass/scss then it is easy. While using sass, we have different sass files, each file has code related to specific components. And then these different files are imported into a main sass file (project/node_modules/bulma.sass). If you open bulma.sass, it will have code lines like @import "sass/utilities/_all" @import "sass/form/_all" So for example You can simply remove the import line for forms if you don't use forms in your project. Now if you are using forms but not checkbox and radio buttons, you can further go to project/node_modules/bulma/sass/form and open _all.sass. you will see that it also imports multiple files like @import "checkbox-radio.sass" @import "input-textarea.sass" So if you don't use checkbox and radio buttons, remove the line that imports its sass file. Lastly, if you want to be more specific. If you use some types of checkbox buttons but not the other ones, you can open checkbox-radio.sass and remove extra code from there.
@sh4nks109
@sh4nks109 4 жыл бұрын
tutorial daddy xDD
@lordoftheflings
@lordoftheflings 4 жыл бұрын
great video, but goddamn thats clunky shit software. so many damn unrelated steps. complete unintuitive dreck.
Learn Sass In 20 Minutes | Sass Crash Course
19:42
developedbyed
Рет қаралды 944 М.
Flexbox design patterns you can use in your projects
15:33
Kevin Powell
Рет қаралды 446 М.
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Tools EVERY Software Engineer Should Know
11:37
Tech With Tim
Рет қаралды 1,7 М.
Bulma Layouts - Sections, Containers, Columns, and Levels
12:36
Pretty Printed
Рет қаралды 18 М.
Bulma CSS Crash Course - A Quick Guide (2021)
22:47
SteffOverflow
Рет қаралды 8 М.
Reason 13 | You can't do this in no other DAW!
10:05
Sef Nitty
Рет қаралды 106
How to Create Tiles in Bulma
23:52
Pretty Printed
Рет қаралды 9 М.
Getting Started with Bulma
6:06
Vue Mastery
Рет қаралды 95 М.
Flexbox CSS In 20 Minutes
19:59
Traversy Media
Рет қаралды 1,8 МЛН
Learn Every CSS Selector In 20 Minutes
19:38
Web Dev Simplified
Рет қаралды 463 М.
Navbar CSS Tutorial: 3 Ways to Create a Navigation Bar with Flexbox
15:08
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН