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

postcss-100vh-fix

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-100vh-fix - npm Package Compare versions

Comparing version 0.0.1-security to 0.1.0

CHANGELOG.md

25

package.json
{
"name": "postcss-100vh-fix",
"version": "0.0.1-security",
"description": "security holding package",
"repository": "npm/security-holder",
"dependencies": {}
"version": "0.1.0",
"description": "PostCSS plugin to fix height/min-height: 100vh on iOS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"100vh",
"safari",
"height",
"min-height",
"-webkit-fill-available"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "postcss/postcss-100vh-fix",
"dependencies": {
"postcss": "^7.0.32"
},
"engines": {
"node": ">=8.0.0"
}
}

@@ -1,9 +0,31 @@

# Security holding package
# PostCSS `100vh` Fix
This package name is not currently in use, but was formerly occupied
by another package. To avoid malicious use, npm is hanging on to the
package name, but loosely, and we'll probably give it to you if you
want it.
[PostCSS] plugin to fix [iOS’s bug] with `100vh`.
You may adopt this package by contacting support@npmjs.com and
requesting the name.
```css
body {
height: 100vh;
}
```
```css
body {
height: 100vh;
}
@supports (-webkit-touch-callout: none) {
body {
height: -webkit-fill-available;
}
}
```
It works with `min-height` and `max-height` too.
[iOS’s bug]: https://allthingssmitty.com/2020/05/11/css-fix-for-100vh-in-mobile-webkit/
[PostCSS]: https://github.com/postcss/postcss
<a href="https://evilmartians.com/?utm_source=postcss-dark-theme-class">
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
alt="Sponsored by Evil Martians" width="236" height="54">
</a>
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