Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@miraidesigns/card

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@miraidesigns/card

Mirai Designs Framework: Card module

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Cards

Cards are containers with a single object or focus. They are made up of a title and description and may also include media elements and require user actions.


HTML

<div class="mdf-card"> 
    <div class="mdf-card__header">
        <h2 class="mdf-card__title">Card title</h2>
    </div>

    <div class="mdf-card__content">
        <p>Some text describing the card's content or purpose.</p>
    </div>
</div>

Sass

// Include default styles without configuration
@forward '@miraidesigns/card/styles';
// Configure appearance
@use '@miraidesigns/card' with (
    $variable: value
);

@include card.styles();

Examples

Some basic examples on how the module can be used.

Card with Media and Actions

Media like images or video and user actions are easily added to any card.

<div class="mdf-card">
    <div class="mdf-card__media">
        <img class="mdf-card__media-item" src="1.jpg" alt="Image description">
    </div>

    <div class="mdf-card__header">
        <h2 class="mdf-card__title">Card title</h2>
    </div>

    <div class="mdf-card__content">
        <p>Some text describing the card's content or purpose.</p>
    </div>

    <div class="mdf-card__footer">
        <button class="mdf-button">Action 1</button>
        <button class="mdf-button">Action 2</button>
    </div>
</div>

Implementation

Classes

NameTypeDescription
mdf-cardParentContainer for the card elements
mdf-card--borderedModifierAdd a border to the card
mdf-card--raisedModifierElevate the card by adding a shadow
mdf-card--fixed-widthModifierRestrict the card's width
mdf-card__mediaChildContains the media elements. Child to .mdf-card
mdf-card__media-itemChildMedia element. Child to .mdf-card__media
mdf-card__headerChildContains the title. Child to .mdf-card
mdf-card__titleChildTitle element. Child to .mdf-card__header
mdf-card__contentChildContains the cards text description. Child to .mdf-card
mdf-card__footerChildContains the action buttons. Child to .mdf-card

Keywords

FAQs

Package last updated on 15 Jul 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc