mpxx

A set of spacing CSS classes compatible with Material-ui standards.

Usage no npm install needed!

<script type="module">
  import mpxx from 'https://cdn.skypack.dev/mpxx';
</script>

README

mpxx

A set of spacing CSS classes compatible with Material-ui standards.

How it works

- Pick a spacing operator: m: margin or p: padding
- Pick a spacing modifier: t: top, b: bottom, l: left, r: right, x: horizontal, y: vertical
- Pick a spacing value in half rem: auto, 0, 0h: 0.5, 1, 1h: 1.5, 2, 3, ..., 12
- (optionnal) Apply a media query suffix: m: 600px, t: 900px
- Combime them into a CSS class:
<div class="mx-auto">
  <div>Horizontal margins auto</div>
</div>
<div class="p-2">
  <div>Padding 1rem</div>
</div>
<div class="my-4-m">
  <div>Vertical margin 2rem on mobile screens</div>
</div>
<div class="m-0h-t">
  <div>Margin 0.25rem on tablet screens</div>
</div>

Installation

JavaScript

npm install mpxx --save

Inject CSS:

import 'mpxx/mpxx.min.css'

Or use with inline styles:

import mpxx from 'mpxx'

const Menu = () => (
  <div style={mpxx('pt-2')}>
    Padding top 1rem
  </div>
)

HTML

Download the CSS file.

Or use a CDN:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mpxx@4.0.0/mpxx.min.css">

Contributing

Yes, thank you.