UNPKG

adwaveui

Version:

Interactive Web Components inspired by the Gtk Adwaita theme.

19 lines (18 loc) 581 B
// src/components/slider/slider.css var stylesheet = "adw-slider{display:flex;justify-content:center;align-items:center;padding-left:.3em;padding-right:.3em;touch-action:none}.skeleton adw-slider{padding-left:0;padding-right:0}"; var exports = { css: stylesheet, element: null }; (function() { if (typeof window !== "undefined") { const head = document.head; const style = document.createElement("style"); style.appendChild(document.createTextNode(stylesheet)); head.appendChild(style); exports.element = style; } })(); export { exports as default };