
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@avalanche/object-aspect-ratio
Advanced tools
Maintain aspect ratio.
npm install @avalanche/object-aspect-ratio --save-dev
// Import the main file.
@import 'node_modules/@avalanche/object-aspect-ratio/scss/index.scss';
Using node-sass (or a plugin for Grunt, gulp or webpack which is using node-sass) in combination with the node-sass-magic-importer custom importer, can make importing CSS dependencies from node_modules
a much nicer experience.
// Import the main file.
@import '~@avalanche/object-aspect-ratio';
// Import just the classes you need.
@import '{ .o-aspect-ratio, .o-aspect-ratio--4/3, .o-aspect-ratio__inner } from ~@avalanche/object-aspect-ratio';
// Not a fan of the "o-" prefix?
@import '{ .o-aspect-ratio as .aspect-ratio, .o-aspect-ratio__inner as .aspect-ratio__inner } from ~@avalanche/object-aspect-ratio';
<div class="o-aspect-ratio">
<div class="o-aspect-ratio__inner">
Default (16/9)
</div>
</div>
<div class="o-aspect-ratio o-aspect-ratio--4/3">
<div class="o-aspect-ratio__inner">
4/3
</div>
</div>
<div class="o-aspect-ratio o-aspect-ratio--16/9">
<div class="o-aspect-ratio__inner">
16/9
</div>
</div>
<div class="o-aspect-ratio o-aspect-ratio--21/9">
<div class="o-aspect-ratio__inner">
21/9
</div>
</div>
@import 'node_modules/@avalanche/object-aspect-ratio/scss/mixins';
// Usage.
.aspect-ratio {
@include o-aspect-ratio(16, 9, '.aspect-ratio__inner');
}
Modify the default aspect ratio via the $o-aspect-ratio-default
map variable.
/// Container max widths.
/// @type Map
$o-aspect-ratio-default: (
width: 16,
height: 9,
) !default;
Markus Oberlehner
Website: https://markus.oberlehner.net
Twitter: https://twitter.com/MaOberlehner
PayPal.me: https://paypal.me/maoberlehner
MIT
FAQs
Maintain aspect ratio
We found that @avalanche/object-aspect-ratio demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.