Skip to content

Commit 7d2bf1e

Browse files
committed
rquested fixes
1 parent 483be59 commit 7d2bf1e

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

docs/customizing/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Photobooth uses a small SCSS build pipeline based on `gulp` and `sass`. You can
66

77
This 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

1212
To 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`.
1515
2. Add your overrides or additional styles to this file.
1616

1717
## Building the CSS

lib/boot.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
FileUtility::createDirectory(FolderEnum::THUMBS->absolute());
3131
FileUtility::createDirectory(FolderEnum::TEMP->absolute());
3232
FileUtility::createDirectory(FolderEnum::PRIVATE->absolute());
33-
FileUtility::createDirectory(FolderEnum::SASS->absolute());
3433
FileUtility::createDirectory(PathUtility::getAbsolutePath('private/fonts'));
3534
FileUtility::createDirectory(PathUtility::getAbsolutePath('private/images/background'));
3635
FileUtility::createDirectory(PathUtility::getAbsolutePath('private/images/frames'));

src/Enum/FolderEnum.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)