5.0.0 • Published 7 months ago

postcss-size v5.0.0

Weekly downloads
1,748
License
MIT
Repository
github
Last release
7 months ago

PostCSS Size

PostCSS plugin for size shortcut to set width and height properties.

It also handles min-size to set min-width and min-height, and max-size to set max-width and max-height.

.two {
  size: 20px 10px;
}
.one {
  size: 10px;
}
.minmax {
  min-size: 10px;
  max-size: 200px auto;
}
.two {
  width: 20px;
  height: 10px;
}
.one {
  width: 10px;
  height: 10px;
}
.minmax {
  min-width: 10px;
  min-height: 10px;
  max-width: 200px;
  max-height: auto;
}

Docs

Read full docs here.