UNPKG

@holidayextras/brand-parken-und-fliegen

Version:
71 lines (60 loc) 3.94 kB
# Example Brand We've coined the phrase 'Daisy chaining' to describe how our theme styles leverage dependencies. e.g. If you @import `parken-und-fliegen`, it will @import `brand-globals`, which in turn will @import `bootstrap`. ### Basic import You can run a theme in your app by simply including theme.less, which will bring in everything by default. ``` @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/theme.less'; ``` ### Advanced import However, for more control and visibility, we recommend that you @import just the less files that you need. ``` // // Example cherry picking file // -------------------------------------------------- // Core variables and mixins @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/variables'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/mixins'; // Reset and dependencies @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/normalize'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/print'; // Core CSS @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/scaffolding'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/type'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/code'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/grid'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/tables'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/forms'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/buttons'; // Components @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/component-animations'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/dropdowns'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/button-groups'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/input-groups'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/navs'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/navbar'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/breadcrumbs'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/pagination'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/pager'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/labels'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/badges'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/jumbotron'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/thumbnails'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/alerts'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/progress-bars'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/media'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/list-group'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/panels'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/responsive-embed'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/wells'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/close'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/pickadate'; // Components w/ JavaScript @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/modals'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/tooltip'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/popovers'; // @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/carousel'; // Utility classes @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/utilities'; @import '../node_modules/@holidayextras/parken-und-fliegen/src/less/responsive-utilities'; ```