phx-react
Version:
PHX REACT
29 lines (26 loc) • 770 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SortableStyle = void 0;
const tslib_1 = require("tslib");
const react_1 = tslib_1.__importDefault(require("react"));
const SortableStyle = () => {
return (react_1.default.createElement("style", null, `
.phx-item-drag {
background-color: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
cursor: move;
}
.phx-item-chosen {
cursor: move;
}
.phx-item-ghost {
background-color: #f3f4f6;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
cursor: move;
}
`));
};
exports.SortableStyle = SortableStyle;
//# sourceMappingURL=SortableStyle.js.map