✨ Adds ability for user to pass in their own stylesheet with Docker
This commit is contained in:
@@ -89,5 +89,6 @@ export default {
|
|||||||
@import '@/styles/dimensions.scss';
|
@import '@/styles/dimensions.scss';
|
||||||
@import '@/styles/color-themes.scss';
|
@import '@/styles/color-themes.scss';
|
||||||
@import '@/styles/typography.scss';
|
@import '@/styles/typography.scss';
|
||||||
|
@import '@/styles/user-defined-themes.scss';
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
12
src/styles/user-defined-themes.scss
Normal file
12
src/styles/user-defined-themes.scss
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// Put your custom themes here.
|
||||||
|
// Don't forget to also put your theme name into the config
|
||||||
|
// E.g: appConfig: cssThemes: [ 'my-theme' ]
|
||||||
|
|
||||||
|
// Example theme:
|
||||||
|
// html[data-theme='my-theme'] {
|
||||||
|
// --primary: #00CCB4;
|
||||||
|
// --background: #141b33;
|
||||||
|
// --background-darker: #060913;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// For more info, see: https://github.com/Lissy93/dashy/blob/master/docs/theming.md
|
||||||
Reference in New Issue
Block a user