diff --git a/packages/pv-stylemark/README.md b/packages/pv-stylemark/README.md index 081aaa7..3258816 100644 --- a/packages/pv-stylemark/README.md +++ b/packages/pv-stylemark/README.md @@ -47,7 +47,6 @@ Basic Configuration for both, cli and webpack-plugin, can be done in a `pv.confi | ------------- | ------ | -------- | ----------------------------- | | destPath | string | 'target' | defines where to put bundled files | | cdTemplatesSrc | string | 'src/templates/' | defines homefolder of clickdummy-templates (glob: `[cdTemplatesSrc]**/*.hbs`) | -| lsgTemplatesSrc | string | 'src/styleguide/templates/' | defines homefolder of lsg-templates (glob: `[lsgTemplatesSrc]**/*.hbs`) | | componentsSrc | string | 'src/components/' | defines homefolder of components (glob: `[componentsSrc]**/*.hbs`) | | cdPagesSrc | string | 'src/pages/' | defines homefolder of clickdummy-pages (glob: `[cdPagesSrc]**/*.hbs`) | | hbsHelperSrc | string | 'helpers/handlebarsHelper/' | defines homefolder of additional handlebars-helpers (glob: `[hbsHelperSrc]*.js`) | @@ -61,7 +60,6 @@ Basic Configuration for both, cli and webpack-plugin, can be done in a `pv.confi module.exports = { destPath: 'dist', cdTemplatesSrc: 'src/clickdummy/templates/', - lsgTemplatesSrc: 'src/lsg/templates/', cdPagesSrc: 'src/clickdummy/pages/', hbsHelperSrc: 'helper/handlebarsHelper/', lsgConfigPath: 'config.stylemark.yaml', diff --git a/packages/pv-stylemark/config/default.config.js b/packages/pv-stylemark/config/default.config.js index a530fd5..ee441a8 100644 --- a/packages/pv-stylemark/config/default.config.js +++ b/packages/pv-stylemark/config/default.config.js @@ -1,7 +1,6 @@ const defaultConfig = { destPath: "target", cdTemplatesSrc: "src/templates/", - lsgTemplatesSrc: "src/styleguide/templates/", componentsSrc: "src/components/", cdPagesSrc: "src/pages/", hbsHelperSrc: "helpers/handlebarsHelper/", diff --git a/packages/pv-stylemark/ui/styles/index.scss b/packages/pv-stylemark/ui/styles/index.scss index 6e9aa2f..18d3d46 100644 --- a/packages/pv-stylemark/ui/styles/index.scss +++ b/packages/pv-stylemark/ui/styles/index.scss @@ -11,10 +11,6 @@ box-sizing: border-box; } -html { - scroll-behavior: smooth; -} - .dds-page { @extend %dds-typo__body-reg;