adwaveui
Version:
Interactive Web Components inspired by the Gtk Adwaita theme.
19 lines (18 loc) • 447 B
JavaScript
// src/index.css
var stylesheet = "._adw_hidden{display:none}._adw_col{flex-direction:column}";
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
};