Skip to content

Releases: merodiro/twind-logical

v0.1.0

04 Apr 23:05
Compare
Choose a tag to compare

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

v0.0.2

24 Mar 23:03
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

the first release wasn't exporting files correctly