v2.5.2
Giriş yap

SASS tek seferde tüm dosyaları import etmek

onlywhatchess
401 defa görüntülendi

Yanlış hatırlamıyorsam tek tek bu şekilde elle yazmak yerine

//main.scss
@import '../scss/variables';
@import '../scss/reset';
@import '../scss/row';
@import '../scss/offset'; 

bir fonksiyon yazıp hepsini çekebiliyorduk. Böyle bir şey var mı, nereden öğrenebilirim?
Başka bir şeyle karıştırıyorda olabilirim

Cevap yaz
Cevaplar (1)
makifgokce
1143 gün önce

https://stackoverflow.com/questions/4778627/is-it-possible-to-import-a-whole-directory-in-sass-using-import?answertab=votes#tab-top

@import "foo/*"     // import all the files in the foo folder
@import "bar/**/*"  // import all the files in the bar tree