- add compat version 44510b1
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