Skip to content

v0.1.0

Latest
Compare
Choose a tag to compare
@merodiro merodiro released this 04 Apr 23:05
· 7 commits to main since this release

Note: the compat version only supports RTL and LTR

import twindLogical from 'twind-logical/compat'

setup({
  plugins: {
    ...twindLogical,
  },
})

when using the compat version

.float-start {
  float: inline-start;
}

/* ↓ ↓ ↓ */

.float-start[dir='ltr'],
[dir='ltr'] .float-start {
  float: left;
}

.float-start[dir='rtl'],
[dir='rtl'] .float-start {
  float: right;
}
  • docs: cleanup example files ae04741

v0.0.2...v0.1.0