
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@scalescss/objects-flag
Advanced tools
A slightly more advanced versin of the Media Object for Scales CSS
A simple object for placing variable amounts of content next to a fixed image or other media. Similar to the media object, the flag object allows you to control the vertical alignment of the content.
Based on The Flag Object, by Harry Roberts.
Scales uses the Sass CSS preprocessor, you'll need either Ruby Sass or LibSass.
npm install --save @scales/objects-flagThe flag object can be used in many situations for positioning any type of image or other media next to some other content.
Basic usage:
<div class="Flag">
  <div class="Flag__figure">
    <img src="http://placekitten.com/g/150/150">
  </div>
  <div class="Flag__body">
    <p>The domestic cat is a small, usually furry, domesticated, and carnivorous mammal. It is often called the housecat when kept as an indoor pet, or simply the cat when there is no need to distinguish it from other felids and felines.</p>
  </div>
</div>
To move the image to the opposite side:
<div class="Flag--rev">
To change the vertical alignment of the text to middle or bottom:
<div class="Flag Flag--middle">
<div class="Flag Flag--bottom">
To stack image above the text on small screens:
<div class="Flag Flag--stacked">
.Flag.Flag--rev.Flag__figure.Flag__body.Flag--stacked.Flag--middle.Flag--bottom.Flag--flush.Flag--tiny.Flag--small.Flag--large.Flag--huge$flag-gutter$flag-gutter-tiny$flag-gutter-small$flag-gutter-large$flag-gutter-huge$flag-stacked-breakpointAll Scales patterns expose the $scales-namespace variable.
$scales-namespace accepts a string that will prefix all Scales classes. The default value is null.
Class level namespace variables allow you to namespace a selector based on the type e.g. b- for "base", o- for "objects", u- for utilities, and c- for "components".
This pattern exposes the $scales-objects-class-namespace variable.
$scales-objects-class-namespace accepts a string that will prefix any classes in this pattern and follow the Scales Namespace Variable if it is not null. The default value is null.
To set either of these namespaces, you will need to set the variables in a file that is imported before any scales files. For example:
@import your-project/settings; // Namespace variables are set in this file
@import your-project/scalescss; // Imports all of the Scales packages
@import your-project/project // The rest of your project imports
FAQs
A slightly more advanced versin of the Media Object for Scales CSS
We found that @scalescss/objects-flag demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.