Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 369 Bytes

File metadata and controls

14 lines (13 loc) · 369 Bytes

postcss-plugin-inset

This plugin is used to convert inset to left,top,right,bottom to compatible with safari(ver<=14.1) or any other browsers which does not support inset property.

Usage

add it to postcss.config.js

/** @type {import('postcss-load-config').Config} */
module.exports = {
  plugins: {
    ...,
    'postcss-plugin-inset': {},
  },
};