You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5. Edit [`/src/mastodon-material.scss`](../src/mastodon-material.scss) like below.
292
+
293
+
Diff
294
+
295
+
```diff
296
+
- @use '../../../application'; // for git submodule install
297
+
- //@use '../application'; // for copying file install
298
+
+ //@use '../../../application'; // for git submodule install
299
+
+ @use '../application'; // for copying file install
300
+
301
+
@use 'mastodon-material';
302
+
```
303
+
304
+
<details>
305
+
<summary>Before</summary>
306
+
307
+
```scss
308
+
@use'../../../application'; // for git submodule install
309
+
//@use '../application'; // for copying file install
310
+
311
+
@use'mastodon-material';
312
+
```
313
+
314
+
</details>
315
+
316
+
<details>
317
+
<summary>After</summary>
318
+
319
+
```scss
320
+
//@use '../../../application'; // for git submodule install
321
+
@use'../application'; // for copying file install
322
+
323
+
@use'mastodon-material';
324
+
```
325
+
326
+
</details>
327
+
291
328
5. Follow the steps from 4. in [Installing multiple Mastodon Material (by using submodules)](installation_guide.md#installing-multiple-mastodon-material-by-using-submodules).
0 commit comments