File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ Photobooth uses a small SCSS build pipeline based on `gulp` and `sass`. You can
66
77This means:
88
9- - If ` assets /sass/_custom.scss` exists, it is automatically imported into ` framework.scss ` .
9+ - If ` private /sass/_custom.scss` exists, it is automatically imported into ` framework.scss ` .
1010- No template changes are needed – your styles are bundled into ` resources/css/framework.css ` , which is already loaded by Photobooth.
1111
1212To use this:
1313
14- 1 . Create a new file called ` _custom.scss ` in ` assets /sass` .
14+ 1 . Create a new file called ` _custom.scss ` in ` private /sass` .
15152 . Add your overrides or additional styles to this file.
1616
1717## Building the CSS
Original file line number Diff line number Diff line change 3030FileUtility::createDirectory (FolderEnum::THUMBS ->absolute ());
3131FileUtility::createDirectory (FolderEnum::TEMP ->absolute ());
3232FileUtility::createDirectory (FolderEnum::PRIVATE ->absolute ());
33- FileUtility::createDirectory (FolderEnum::SASS ->absolute ());
3433FileUtility::createDirectory (PathUtility::getAbsolutePath ('private/fonts ' ));
3534FileUtility::createDirectory (PathUtility::getAbsolutePath ('private/images/background ' ));
3635FileUtility::createDirectory (PathUtility::getAbsolutePath ('private/images/frames ' ));
Original file line number Diff line number Diff line change @@ -23,8 +23,6 @@ enum FolderEnum: string
2323 case RESOURCES = 'resources ' ;
2424 case VAR = 'var ' ;
2525
26- case SASS = 'sass ' ;
27-
2826 public function public (): string
2927 {
3028 return PathUtility::getPublicPath ($ this ->value );
@@ -52,7 +50,6 @@ public function identifier(): string
5250 FolderEnum::PRIVATE => 'private ' ,
5351 FolderEnum::RESOURCES => 'resources ' ,
5452 FolderEnum::VAR => 'var ' ,
55- FolderEnum::SASS => 'sass ' ,
5653 };
5754 }
5855}
You can’t perform that action at this time.
0 commit comments