Package Exports
- @avalanche/object-media
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@avalanche/object-media) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@avalanche/object-media
Media object - image on left/right, text next to it.
- [Documentation](https://avalanche.oberlehner.net/documentation/#object: media)
Install
npm install @avalanche/object-media --save-devBasic usage
This package requires that node-sass (or one of the grunt, gulp, etc. equivalents) in combination with the node-sass-magic-importer custom importer is used.
// Import the main file.
@import '~@avalanche/object-media';
// Import just the mixin file.
@import '~@avalanche/object-media/scss/mixins';
// Import just the classes you need.
@import '{ .o-media, .o-media__body } from ~@avalanche/object-media';
// Not a fan of the "o-" prefix?
@import '{ .o-media as .media, .o-media__body as .media__body } from ~@avalanche/object-media';Demo
Default spacing size
<div class="o-media">
<div class="o-media__figure">
<img src="http://placehold.it/50x50" alt="Placeholder">
</div>
<div class="o-media__body">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et.
</div>
</div>X-large spacing size
<div class="o-media o-media--xl">
<div class="o-media__figure">
<img src="http://placehold.it/50x50" alt="Placeholder">
</div>
<div class="o-media__body">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et.
</div>
</div>Mixins
@import '~@avalanche/object-media/scss/mixins';
// Usage.
.media {
@include o-media();
}
.media-figure {
@include o-media-figure();
}
.media-body {
@include o-media-body();
}About
Author
Markus Oberlehner
Twitter: https://twitter.com/MaOberlehner
PayPal.me: https://paypal.me/maoberlehner
License
MIT