mirror of
https://github.com/filegator/filegator.git
synced 2025-08-11 11:44:14 +02:00
docs upd
This commit is contained in:
32
docs/configuration/basic.md
Normal file
32
docs/configuration/basic.md
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
## Basic
|
||||
Edit ```configuration.php``` file to change basic things like logo, title, language and upload restrictions.
|
||||
|
||||
## Frontend tweaks
|
||||
You can change default color scheme and other options in ```/frontend/App.vue``` and recompile.
|
||||
|
||||
```
|
||||
// Primary color
|
||||
$primary: #34B891;
|
||||
$primary-invert: findColorInvert($primary);
|
||||
|
||||
$colors: (
|
||||
"primary": ($primary, $primary-invert),
|
||||
"info": ($info, $info-invert),
|
||||
"success": ($success, $success-invert),
|
||||
"warning": ($warning, $warning-invert),
|
||||
"danger": ($danger, $danger-invert),
|
||||
);
|
||||
|
||||
// Links
|
||||
$link: $primary;
|
||||
$link-invert: $primary-invert;
|
||||
$link-focus-border: $primary;
|
||||
|
||||
// Disable the widescreen breakpoint
|
||||
$widescreen-enabled: false;
|
||||
|
||||
// Disable the fullhd breakpoint
|
||||
$fullhd-enabled: false;
|
||||
```
|
||||
|
Reference in New Issue
Block a user