diff --git a/Gemfile.lock b/Gemfile.lock index eeef5d7a1..403745eaa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - lookbook (2.0.5) + lookbook (2.1.0) activemodel css_parser htmlbeautifier (~> 1.3) diff --git a/docs/package.json b/docs/package.json index 5bd88b6c8..3166bb105 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "lookbook-docs", - "version": "2.0.5", + "version": "2.1.0", "private": true, "scripts": { "esbuild": "node esbuild.config.js --minify", diff --git a/lib/lookbook/cable/cable.rb b/lib/lookbook/cable/cable.rb index 7624c5bf2..a6fbf7944 100644 --- a/lib/lookbook/cable/cable.rb +++ b/lib/lookbook/cable/cable.rb @@ -1,6 +1,6 @@ require "action_cable/engine" -require_relative "./connection" -require_relative "./reload_channel" +require_relative "connection" +require_relative "reload_channel" module Lookbook class Cable diff --git a/lib/lookbook/engine.rb b/lib/lookbook/engine.rb index 6585f9abc..0aa5d1567 100644 --- a/lib/lookbook/engine.rb +++ b/lib/lookbook/engine.rb @@ -146,9 +146,9 @@ def hooks @_hooks ||= HookStore.new end - def run_hooks(event_name, *args) + def run_hooks(event_name, *) hooks.for_event(event_name).each do |hook| - hook.call(Lookbook, *args) + hook.call(Lookbook, *) end end diff --git a/lib/lookbook/file_watcher.rb b/lib/lookbook/file_watcher.rb index 0a5136a83..c6379bf19 100644 --- a/lib/lookbook/file_watcher.rb +++ b/lib/lookbook/file_watcher.rb @@ -13,7 +13,7 @@ def evented? def file_watcher @_file_watcher ||= begin - require_relative "./support/evented_file_update_checker" + require_relative "support/evented_file_update_checker" EventedFileUpdateChecker rescue LoadError diff --git a/lib/lookbook/helpers/class_names_helper.rb b/lib/lookbook/helpers/class_names_helper.rb index dd60a4a67..887d1246b 100644 --- a/lib/lookbook/helpers/class_names_helper.rb +++ b/lib/lookbook/helpers/class_names_helper.rb @@ -19,8 +19,8 @@ def build_tag_values(*args) tag_values end - def class_names(*args) - tokens = build_tag_values(*args).flat_map { |value| value.to_s.split(/\s+/) }.uniq + def class_names(*) + tokens = build_tag_values(*).flat_map { |value| value.to_s.split(/\s+/) }.uniq safe_join(tokens, " ") end diff --git a/lib/lookbook/helpers/ui_elements_helper.rb b/lib/lookbook/helpers/ui_elements_helper.rb index ec3d7dc79..c9651b37d 100644 --- a/lib/lookbook/helpers/ui_elements_helper.rb +++ b/lib/lookbook/helpers/ui_elements_helper.rb @@ -17,8 +17,8 @@ module UiElementsHelper # # @param name [Symbol, String] Name of the icon # @param opts [Hash] Options hash - def icon(name, **opts) - lookbook_render :icon, name: name, **opts + def icon(name, **) + lookbook_render(:icon, name: name, **) end # Display a syntax-highlighted block of code. @@ -35,13 +35,13 @@ def code(language = :html, **opts, &block) end # @api private - def prose(**opts, &block) - lookbook_render :prose, **opts, &block + def prose(**, &block) + lookbook_render(:prose, **, &block) end # @api private - def lookbook_tag(tag = :div, **attrs, &block) - lookbook_render :tag, tag: tag, **attrs, &block + def lookbook_tag(tag = :div, **, &block) + lookbook_render(:tag, tag: tag, **, &block) end # @api private diff --git a/lib/lookbook/stores/input_store.rb b/lib/lookbook/stores/input_store.rb index a7697fdd1..1c4ef6eea 100644 --- a/lib/lookbook/stores/input_store.rb +++ b/lib/lookbook/stores/input_store.rb @@ -16,8 +16,8 @@ def initialize(config = nil) end end - def add_input(input, *args) - store[normalize_name(input)] = build_config(input, *args) + def add_input(input, *) + store[normalize_name(input)] = build_config(input, *) end def get_input(input) diff --git a/lib/lookbook/stores/panel_store.rb b/lib/lookbook/stores/panel_store.rb index aab00c1f6..238a68102 100644 --- a/lib/lookbook/stores/panel_store.rb +++ b/lib/lookbook/stores/panel_store.rb @@ -19,11 +19,11 @@ def initialize(config = nil) load_config(config) end - def add_panel(name, *args) + def add_panel(name, *) if get_panel(name) raise ConfigError.new("panel with name '#{name}' already exists", scope: "panels.config") else - store[Utils.symbolize_name(name)] = build_config(name, *args) + store[Utils.symbolize_name(name)] = build_config(name, *) end end diff --git a/lib/lookbook/support/service.rb b/lib/lookbook/support/service.rb index 7cc770b19..9678ac7e6 100644 --- a/lib/lookbook/support/service.rb +++ b/lib/lookbook/support/service.rb @@ -1,7 +1,7 @@ module Lookbook class Service - def self.call(*args, **kwargs, &block) - new(*args, **kwargs).call(&block) + def self.call(*, **, &block) + new(*, **).call(&block) end end end diff --git a/lib/lookbook/version.rb b/lib/lookbook/version.rb index 761f615c2..13ee9a924 100644 --- a/lib/lookbook/version.rb +++ b/lib/lookbook/version.rb @@ -1,3 +1,3 @@ module Lookbook - VERSION = "2.0.5" + VERSION = "2.1.0" end diff --git a/lib/lookbook/websocket.rb b/lib/lookbook/websocket.rb index de178ad83..80a842c09 100644 --- a/lib/lookbook/websocket.rb +++ b/lib/lookbook/websocket.rb @@ -1,10 +1,10 @@ module Lookbook class Websocket class << self - def new(mount_path, **kwargs) - require_relative "./cable/cable" + def new(mount_path, **) + require_relative "cable/cable" - Cable.new(mount_path, **kwargs) + Cable.new(mount_path, **) rescue LoadError NullWebsocket.new end diff --git a/package-lock.json b/package-lock.json index 9ab847e9a..7a263d602 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lookbook", - "version": "2.0.5", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lookbook", - "version": "2.0.5", + "version": "2.1.0", "license": "MIT", "dependencies": { "@alpinejs/collapse": "^3.12.1", diff --git a/package.json b/package.json index c612c2153..436c23fbf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lookbook", - "version": "2.0.5", + "version": "2.1.0", "description": "A native development UI for ViewComponent", "targets": { "app": { diff --git a/public/lookbook-assets/css/lookbook.css b/public/lookbook-assets/css/lookbook.css index eee317adf..bf1d794fa 100644 --- a/public/lookbook-assets/css/lookbook.css +++ b/public/lookbook-assets/css/lookbook.css @@ -4,7 +4,7 @@ font-display: swap; font-style: normal; font-named-instance: "Regular"; - src: url("../Inter-roman.var.d4f9805a.woff2") format("woff2"); + src: url("../Inter-roman.var.b695afbe.woff2") format("woff2"); } @font-face { @@ -13,7 +13,7 @@ font-display: swap; font-style: italic; font-named-instance: "Italic"; - src: url("../Inter-italic.var.53a0de5f.woff2") format("woff2"); + src: url("../Inter-italic.var.69eb0fe1.woff2") format("woff2"); } @font-face { @@ -21,7 +21,7 @@ font-weight: 200 900; font-style: normal; font-stretch: normal; - src: url("../SourceCodeVariable-Roman.ttf.f1c8fcce.woff2") format("woff2"); + src: url("../SourceCodeVariable-Roman.ttf.118e9f22.woff2") format("woff2"); } @font-face { @@ -29,7 +29,7 @@ font-weight: 200 900; font-style: italic; font-stretch: normal; - src: url("../SourceCodeVariable-Italic.ttf.a93fa22f.woff2") format("woff2"); + src: url("../SourceCodeVariable-Italic.ttf.09b4354a.woff2") format("woff2"); } *, :before, :after { @@ -56,9 +56,9 @@ body { } hr { + height: 0; color: inherit; border-top-width: 1px; - height: 0; } abbr:where([title]) { @@ -145,11 +145,7 @@ progress { vertical-align: baseline; } -::-webkit-inner-spin-button { - height: auto; -} - -::-webkit-outer-spin-button { +::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; } @@ -260,55 +256,15 @@ input::placeholder, textarea::placeholder { } ::-webkit-date-and-time-value { - text-align: inherit; min-height: 1.5em; + text-align: inherit; } ::-webkit-datetime-edit { display: inline-flex; } -::-webkit-datetime-edit { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-year-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-month-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-day-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-hour-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-minute-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-second-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-millisecond-field { - padding-top: 0; - padding-bottom: 0; -} - -::-webkit-datetime-edit-meridiem-field { +::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field { padding-top: 0; padding-bottom: 0; } @@ -337,6 +293,8 @@ select { vertical-align: middle; -webkit-user-select: none; user-select: none; + height: 1rem; + width: 1rem; color: #2563eb; --tw-shadow: 0 0 #0000; background-color: #fff; @@ -344,8 +302,6 @@ select { border-width: 1px; border-color: #6b7280; flex-shrink: 0; - width: 1rem; - height: 1rem; padding: 0; display: inline-block; } @@ -421,9 +377,9 @@ select { } html { - scroll-behavior: smooth; - width: 100vw; height: 100vh; + width: 100vw; + scroll-behavior: smooth; } @media screen and (prefers-reduced-motion: reduce) { @@ -433,8 +389,8 @@ html { } body { - color: var(--lookbook-text); width: 100vw; + color: var(--lookbook-text); font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; font-size: .875rem; line-height: 1.25rem; @@ -451,8 +407,8 @@ pre[class*="language-"] { } ::-webkit-scrollbar { - width: .25rem; height: .25rem; + width: .25rem; } ::-webkit-scrollbar-track { @@ -557,55 +513,15 @@ pre[class*="language-"] { } .form-input::-webkit-date-and-time-value { - text-align: inherit; min-height: 1.5em; + text-align: inherit; } .form-input::-webkit-datetime-edit { display: inline-flex; } -.form-input::-webkit-datetime-edit { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-year-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-month-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-day-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-hour-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-minute-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-second-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-millisecond-field { - padding-top: 0; - padding-bottom: 0; -} - -.form-input::-webkit-datetime-edit-meridiem-field { +.form-input::-webkit-datetime-edit, .form-input::-webkit-datetime-edit-year-field, .form-input::-webkit-datetime-edit-month-field, .form-input::-webkit-datetime-edit-day-field, .form-input::-webkit-datetime-edit-hour-field, .form-input::-webkit-datetime-edit-minute-field, .form-input::-webkit-datetime-edit-second-field, .form-input::-webkit-datetime-edit-millisecond-field, .form-input::-webkit-datetime-edit-meridiem-field { padding-top: 0; padding-bottom: 0; } @@ -615,12 +531,12 @@ pre[class*="language-"] { max-width: 65ch; } -.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(p):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } -.prose :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-lead); margin-top: 1.2em; margin-bottom: 1.2em; @@ -628,94 +544,96 @@ pre[class*="language-"] { line-height: 1.6; } -.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(a):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-links); font-weight: 500; text-decoration: underline; } -.prose :where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(strong):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-bold); font-weight: 600; } -.prose :where(a strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(a strong):not(:where([class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) { color: inherit; } -.prose :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(thead th strong):not(:where([class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(ol):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; padding-left: 1.625em; list-style-type: decimal; } -.prose :where(ol[type="A"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) { list-style-type: upper-alpha; } -.prose :where(ol[type="a"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) { list-style-type: lower-alpha; } -.prose :where(ol[type="A" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) { list-style-type: upper-alpha; } -.prose :where(ol[type="a" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) { list-style-type: lower-alpha; } -.prose :where(ol[type="I"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) { list-style-type: upper-roman; } -.prose :where(ol[type="i"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) { list-style-type: lower-roman; } -.prose :where(ol[type="I" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) { list-style-type: upper-roman; } -.prose :where(ol[type="i" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) { list-style-type: lower-roman; } -.prose :where(ol[type="1"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) { list-style-type: decimal; } -.prose :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ul):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; padding-left: 1.625em; list-style-type: disc; } -.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker { +.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker { color: var(--tw-prose-counters); font-weight: 400; } -.prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker { +.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker { color: var(--tw-prose-bullets); } -.prose :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - color: var(--tw-prose-headings); - margin-top: 1.25em; - font-weight: 600; -} - -.prose :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(hr):not(:where([class~="not-prose"] *)) { border-color: var(--tw-prose-hr); border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } -.prose :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(blockquote):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-quotes); border-left-width: .25rem; border-left-color: var(--tw-prose-quote-borders); @@ -727,15 +645,15 @@ pre[class*="language-"] { font-weight: 500; } -.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):before { +.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *)):before { content: open-quote; } -.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):after { +.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *)):after { content: close-quote; } -.prose :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h1):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-headings); margin-top: 0; margin-bottom: .888889em; @@ -744,12 +662,12 @@ pre[class*="language-"] { line-height: 1.11111; } -.prose :where(h1 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h1 strong):not(:where([class~="not-prose"] *)) { color: inherit; font-weight: 900; } -.prose :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h2):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-headings); margin-top: 2em; margin-bottom: 1em; @@ -758,12 +676,12 @@ pre[class*="language-"] { line-height: 1.33333; } -.prose :where(h2 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h2 strong):not(:where([class~="not-prose"] *)) { color: inherit; font-weight: 800; } -.prose :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h3):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-headings); margin-top: 1.6em; margin-bottom: .6em; @@ -772,12 +690,12 @@ pre[class*="language-"] { line-height: 1.6; } -.prose :where(h3 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h3 strong):not(:where([class~="not-prose"] *)) { color: inherit; font-weight: 700; } -.prose :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h4):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-headings); margin-top: 1.5em; margin-bottom: .5em; @@ -785,61 +703,69 @@ pre[class*="language-"] { line-height: 1.5; } -.prose :where(h4 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h4 strong):not(:where([class~="not-prose"] *)) { color: inherit; font-weight: 700; } -.prose :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(img):not(:where([class~="not-prose"] *)) { margin-top: 2em; margin-bottom: 2em; } -.prose :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - display: block; +.prose :where(figure > *):not(:where([class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; } -.prose :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - color: var(--tw-prose-kbd); - box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%); - border-radius: .3125rem; - padding: .1875em .375em; - font-family: inherit; +.prose :where(figcaption):not(:where([class~="not-prose"] *)) { + color: var(--tw-prose-captions); + margin-top: .857143em; font-size: .875em; - font-weight: 500; + line-height: 1.42857; } -.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(code):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-code); font-size: .875em; font-weight: 600; } -.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after { +.prose :where(code):not(:where([class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"] *)):after { content: "`"; } -.prose :where(a code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h1 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(a code):not(:where([class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h1 code):not(:where([class~="not-prose"] *)) { color: inherit; } -.prose :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h2 code):not(:where([class~="not-prose"] *)) { color: inherit; font-size: .875em; } -.prose :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h3 code):not(:where([class~="not-prose"] *)) { color: inherit; font-size: .9em; } -.prose :where(h4 code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h4 code):not(:where([class~="not-prose"] *)) { color: inherit; } -.prose :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(blockquote code):not(:where([class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th code):not(:where([class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(pre):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-pre-code); background-color: var(--tw-prose-pre-bg); border-radius: .375rem; @@ -852,7 +778,7 @@ pre[class*="language-"] { overflow-x: auto; } -.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(pre code):not(:where([class~="not-prose"] *)) { font-weight: inherit; color: inherit; font-size: inherit; @@ -864,26 +790,26 @@ pre[class*="language-"] { padding: 0; } -.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after { +.prose :where(pre code):not(:where([class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"] *)):after { content: none; } -.prose :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(table):not(:where([class~="not-prose"] *)) { + width: 100%; table-layout: auto; text-align: left; - width: 100%; margin-top: 2em; margin-bottom: 2em; font-size: .875em; line-height: 1.71429; } -.prose :where(thead):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(thead):not(:where([class~="not-prose"] *)) { border-bottom-width: 1px; border-bottom-color: var(--tw-prose-th-borders); } -.prose :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(thead th):not(:where([class~="not-prose"] *)) { color: var(--tw-prose-headings); vertical-align: bottom; padding-bottom: .571429em; @@ -892,40 +818,28 @@ pre[class*="language-"] { font-weight: 600; } -.prose :where(tbody tr):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody tr):not(:where([class~="not-prose"] *)) { border-bottom-width: 1px; border-bottom-color: var(--tw-prose-td-borders); } -.prose :where(tbody tr:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) { border-bottom-width: 0; } -.prose :where(tbody td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody td):not(:where([class~="not-prose"] *)) { vertical-align: baseline; } -.prose :where(tfoot):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tfoot):not(:where([class~="not-prose"] *)) { border-top-width: 1px; border-top-color: var(--tw-prose-th-borders); } -.prose :where(tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tfoot td):not(:where([class~="not-prose"] *)) { vertical-align: top; } -.prose :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} - -.prose :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - color: var(--tw-prose-captions); - margin-top: .857143em; - font-size: .875em; - line-height: 1.42857; -} - .prose { --tw-prose-body: #374151; --tw-prose-headings: #111827; @@ -938,8 +852,6 @@ pre[class*="language-"] { --tw-prose-quotes: #111827; --tw-prose-quote-borders: #e5e7eb; --tw-prose-captions: #6b7280; - --tw-prose-kbd: #111827; - --tw-prose-kbd-shadows: 17 24 39; --tw-prose-code: #111827; --tw-prose-pre-code: #e5e7eb; --tw-prose-pre-bg: #1f2937; @@ -956,8 +868,6 @@ pre[class*="language-"] { --tw-prose-invert-quotes: #f3f4f6; --tw-prose-invert-quote-borders: #374151; --tw-prose-invert-captions: #9ca3af; - --tw-prose-invert-kbd: #fff; - --tw-prose-invert-kbd-shadows: 255 255 255; --tw-prose-invert-code: #fff; --tw-prose-invert-pre-code: #d1d5db; --tw-prose-invert-pre-bg: #00000080; @@ -967,95 +877,96 @@ pre[class*="language-"] { line-height: 1.75; } -.prose :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; +.prose :where(video):not(:where([class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; } -.prose :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(figure):not(:where([class~="not-prose"] *)) { margin-top: 2em; margin-bottom: 2em; } -.prose :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(li):not(:where([class~="not-prose"] *)) { margin-top: .5em; margin-bottom: .5em; } -.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ol > li):not(:where([class~="not-prose"] *)) { padding-left: .375em; } -.prose :where(.prose > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ul > li):not(:where([class~="not-prose"] *)) { + padding-left: .375em; +} + +.prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) { margin-top: .75em; margin-bottom: .75em; } -.prose :where(.prose > ul > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > ul > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; } -.prose :where(.prose > ul > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > ul > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.25em; } -.prose :where(.prose > ol > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > ol > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; } -.prose :where(.prose > ol > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > ol > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.25em; } -.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { margin-top: .75em; margin-bottom: .75em; } -.prose :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; +.prose :where(hr + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .5em; - padding-left: 1.625em; +.prose :where(h2 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h3 + *):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(h4 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) { padding: .571429em; } -.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} - -.prose :where(.prose > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose :where(.prose > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 0; } @@ -1064,85 +975,90 @@ pre[class*="language-"] { line-height: 1.71429; } -.prose-sm :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(p):not(:where([class~="not-prose"] *)) { margin-top: 1.14286em; margin-bottom: 1.14286em; } -.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) { margin-top: .888889em; margin-bottom: .888889em; font-size: 1.28571em; line-height: 1.55556; } -.prose-sm :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) { margin-top: 1.33333em; margin-bottom: 1.33333em; padding-left: 1.11111em; } -.prose-sm :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h1):not(:where([class~="not-prose"] *)) { margin-top: 0; margin-bottom: .8em; font-size: 2.14286em; line-height: 1.2; } -.prose-sm :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h2):not(:where([class~="not-prose"] *)) { margin-top: 1.6em; margin-bottom: .8em; font-size: 1.42857em; line-height: 1.4; } -.prose-sm :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h3):not(:where([class~="not-prose"] *)) { margin-top: 1.55556em; margin-bottom: .444444em; font-size: 1.28571em; line-height: 1.55556; } -.prose-sm :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h4):not(:where([class~="not-prose"] *)) { margin-top: 1.42857em; margin-bottom: .571429em; line-height: 1.42857; } -.prose-sm :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(img):not(:where([class~="not-prose"] *)) { margin-top: 1.71429em; margin-bottom: 1.71429em; } -.prose-sm :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; +.prose-sm :where(video):not(:where([class~="not-prose"] *)) { + margin-top: 1.71429em; + margin-bottom: 1.71429em; } -.prose-sm :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(figure):not(:where([class~="not-prose"] *)) { margin-top: 1.71429em; margin-bottom: 1.71429em; } -.prose-sm :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - border-radius: .3125rem; - padding: .142857em .357143em; +.prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) { + margin-top: .666667em; font-size: .857143em; + line-height: 1.33333; } -.prose-sm :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(code):not(:where([class~="not-prose"] *)) { font-size: .857143em; } -.prose-sm :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) { font-size: .9em; } -.prose-sm :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) { font-size: .888889em; } -.prose-sm :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(pre):not(:where([class~="not-prose"] *)) { border-radius: .25rem; margin-top: 1.66667em; margin-bottom: 1.66667em; @@ -1151,122 +1067,114 @@ pre[class*="language-"] { line-height: 1.66667; } -.prose-sm :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(ol):not(:where([class~="not-prose"] *)) { + margin-top: 1.14286em; + margin-bottom: 1.14286em; + padding-left: 1.57143em; +} + +.prose-sm :where(ul):not(:where([class~="not-prose"] *)) { margin-top: 1.14286em; margin-bottom: 1.14286em; padding-left: 1.57143em; } -.prose-sm :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(li):not(:where([class~="not-prose"] *)) { margin-top: .285714em; margin-bottom: .285714em; } -.prose-sm :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) { padding-left: .428571em; } -.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) { + padding-left: .428571em; +} + +.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"] *)) { margin-top: .571429em; margin-bottom: .571429em; } -.prose-sm :where(.prose-sm > ul > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > ul > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.14286em; } -.prose-sm :where(.prose-sm > ul > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > ul > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.14286em; } -.prose-sm :where(.prose-sm > ol > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > ol > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.14286em; } -.prose-sm :where(.prose-sm > ol > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > ol > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.14286em; } -.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { margin-top: .571429em; margin-bottom: .571429em; } -.prose-sm :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.14286em; - margin-bottom: 1.14286em; +.prose-sm :where(hr):not(:where([class~="not-prose"] *)) { + margin-top: 2.85714em; + margin-bottom: 2.85714em; } -.prose-sm :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.14286em; +.prose-sm :where(hr + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-sm :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .285714em; - padding-left: 1.57143em; +.prose-sm :where(h2 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-sm :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 2.85714em; - margin-bottom: 2.85714em; +.prose-sm :where(h3 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-sm :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(h4 + *):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose-sm :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(table):not(:where([class~="not-prose"] *)) { font-size: .857143em; line-height: 1.5; } -.prose-sm :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(thead th):not(:where([class~="not-prose"] *)) { padding-bottom: .666667em; padding-left: 1em; padding-right: 1em; } -.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) { padding: .666667em 1em; } -.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose-sm :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.71429em; - margin-bottom: 1.71429em; -} - -.prose-sm :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} - -.prose-sm :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .666667em; - font-size: .857143em; - line-height: 1.33333; -} - -.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 0; } @@ -1275,85 +1183,90 @@ pre[class*="language-"] { line-height: 1.77778; } -.prose-lg :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(p):not(:where([class~="not-prose"] *)) { margin-top: 1.33333em; margin-bottom: 1.33333em; } -.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) { margin-top: 1.09091em; margin-bottom: 1.09091em; font-size: 1.22222em; line-height: 1.45455; } -.prose-lg :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) { margin-top: 1.66667em; margin-bottom: 1.66667em; padding-left: 1em; } -.prose-lg :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h1):not(:where([class~="not-prose"] *)) { margin-top: 0; margin-bottom: .833333em; font-size: 2.66667em; line-height: 1; } -.prose-lg :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h2):not(:where([class~="not-prose"] *)) { margin-top: 1.86667em; margin-bottom: 1.06667em; font-size: 1.66667em; line-height: 1.33333; } -.prose-lg :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h3):not(:where([class~="not-prose"] *)) { margin-top: 1.66667em; margin-bottom: .666667em; font-size: 1.33333em; line-height: 1.5; } -.prose-lg :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h4):not(:where([class~="not-prose"] *)) { margin-top: 1.77778em; margin-bottom: .444444em; line-height: 1.55556; } -.prose-lg :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(img):not(:where([class~="not-prose"] *)) { margin-top: 1.77778em; margin-bottom: 1.77778em; } -.prose-lg :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; +.prose-lg :where(video):not(:where([class~="not-prose"] *)) { + margin-top: 1.77778em; + margin-bottom: 1.77778em; } -.prose-lg :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(figure):not(:where([class~="not-prose"] *)) { margin-top: 1.77778em; margin-bottom: 1.77778em; } -.prose-lg :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - border-radius: .3125rem; - padding: .222222em .444444em; +.prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) { + margin-top: 1em; font-size: .888889em; + line-height: 1.5; } -.prose-lg :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(code):not(:where([class~="not-prose"] *)) { font-size: .888889em; } -.prose-lg :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) { font-size: .866667em; } -.prose-lg :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) { font-size: .875em; } -.prose-lg :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(pre):not(:where([class~="not-prose"] *)) { border-radius: .375rem; margin-top: 2em; margin-bottom: 2em; @@ -1362,122 +1275,114 @@ pre[class*="language-"] { line-height: 1.75; } -.prose-lg :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(ol):not(:where([class~="not-prose"] *)) { + margin-top: 1.33333em; + margin-bottom: 1.33333em; + padding-left: 1.55556em; +} + +.prose-lg :where(ul):not(:where([class~="not-prose"] *)) { margin-top: 1.33333em; margin-bottom: 1.33333em; padding-left: 1.55556em; } -.prose-lg :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(li):not(:where([class~="not-prose"] *)) { margin-top: .666667em; margin-bottom: .666667em; } -.prose-lg :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) { + padding-left: .444444em; +} + +.prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) { padding-left: .444444em; } -.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"] *)) { margin-top: .888889em; margin-bottom: .888889em; } -.prose-lg :where(.prose-lg > ul > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > ul > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.33333em; } -.prose-lg :where(.prose-lg > ul > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > ul > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.33333em; } -.prose-lg :where(.prose-lg > ol > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > ol > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.33333em; } -.prose-lg :where(.prose-lg > ol > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > ol > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.33333em; } -.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { margin-top: .888889em; margin-bottom: .888889em; } -.prose-lg :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.33333em; - margin-bottom: 1.33333em; +.prose-lg :where(hr):not(:where([class~="not-prose"] *)) { + margin-top: 3.11111em; + margin-bottom: 3.11111em; } -.prose-lg :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.33333em; +.prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-lg :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .666667em; - padding-left: 1.55556em; +.prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-lg :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 3.11111em; - margin-bottom: 3.11111em; +.prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } -.prose-lg :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose-lg :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(table):not(:where([class~="not-prose"] *)) { font-size: .888889em; line-height: 1.5; } -.prose-lg :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(thead th):not(:where([class~="not-prose"] *)) { padding-bottom: .75em; padding-left: .75em; padding-right: .75em; } -.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) { padding: .75em; } -.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } -.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } -.prose-lg :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.77778em; - margin-bottom: 1.77778em; -} - -.prose-lg :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} - -.prose-lg :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1em; - font-size: .888889em; - line-height: 1.5; -} - -.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 0; } -.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 0; } @@ -1506,22 +1411,22 @@ pre[class*="language-"] { } [data-component="code"].numbered .wrapper { - grid-template-columns: min-content 1fr; - width: 100%; height: 100%; + width: 100%; + grid-template-columns: min-content 1fr; display: grid; position: relative; } [data-component="code"].numbered .line-numbers { + width: min-content; z-index: 10; + height: 100%; -webkit-user-select: none; user-select: none; text-align: right; border-style: dashed; border-right-width: 1px; - width: min-content; - height: 100%; padding: .75rem; } @@ -1581,15 +1486,15 @@ pre[class*="language-"] { } [data-component="header"] .header-project-icon { - flex: none; - width: min-content; height: 1.25rem; + width: min-content; + flex: none; display: inline-block; } [data-component="header"] .header-project-icon svg { - width: auto; height: 100%; + width: auto; } [data-component="icon"] { @@ -1602,12 +1507,12 @@ pre[class*="language-"] { } [data-component="icon"] svg { + height: 100%; + width: 100%; fill: #0000; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; - width: 100%; - height: 100%; } [data-component="icon"].icon-stroke-2 svg { @@ -1624,6 +1529,7 @@ pre[class*="language-"] { } [data-component="message"] { + width: 100%; border-width: 1px; border-color: var(--lookbook-divider); background-color: var(--lookbook-message-bg); @@ -1632,7 +1538,6 @@ pre[class*="language-"] { box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); border-radius: .25rem; gap: 1.5rem; - width: 100%; padding: 1rem; display: flex; } @@ -1692,12 +1597,12 @@ pre[class*="language-"] { } [data-component="nav"] .nav-action { + width: 100%; cursor: pointer; -webkit-user-select: none; user-select: none; color: var(--lookbook-nav-text); align-items: center; - width: 100%; padding-top: .25rem; padding-bottom: .25rem; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter; @@ -1711,8 +1616,8 @@ pre[class*="language-"] { } [data-component="nav"] .nav-action-inner { - align-items: center; width: 100%; + align-items: center; display: flex; position: relative; } @@ -1835,10 +1740,10 @@ pre[class*="language-"] { } [data-component="toolbar"] .toolbar-sections > * { + height: 2.5rem; white-space: nowrap; border-color: var(--lookbook-toolbar-divider); align-items: center; - height: 2.5rem; display: flex; } @@ -1860,12 +1765,12 @@ pre[class*="language-"] { } [data-component="viewport"] .resize-handle { + height: 100%; + width: 100%; border-color: var(--lookbook-divider); background-color: var(--lookbook-viewport-handle); justify-content: center; align-items: center; - width: 100%; - height: 100%; display: flex; } @@ -1907,9 +1812,9 @@ pre[class*="language-"] { } [type="text"], [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], textarea, select { + width: 100%; background-color: var(--lookbook-input-bg); border-radius: .375rem; - width: 100%; font-size: .875rem; line-height: 1.25rem; display: block; @@ -1918,8 +1823,8 @@ pre[class*="language-"] { input[type="range"] { appearance: none; cursor: pointer; - background: none; width: 100%; + background: none; } input[type="range"]:focus { @@ -1928,40 +1833,34 @@ input[type="range"]:focus { input[type="range"]::-webkit-slider-runnable-track { background-color: var(--lookbook-input-toggle); - border-radius: .5rem; height: .5rem; + border-radius: .5rem; } input[type="range"]::-webkit-slider-thumb { appearance: none; background-color: var(--lookbook-input-toggle-active); - border-radius: .5rem; - width: 1rem; height: 1rem; + width: 1rem; + border-radius: .5rem; margin-top: -4px; } input[type="range"]::-moz-range-track { background-color: var(--lookbook-input-toggle); - border-radius: .5rem; height: .5rem; + border-radius: .5rem; } input[type="range"]::-moz-range-thumb { background-color: var(--lookbook-input-toggle-active); + height: 1rem; + width: 1rem; border: none; border-radius: .5rem; - width: 1rem; - height: 1rem; } -input[type="range"]:focus::-webkit-slider-thumb { - outline-offset: 2px; - outline-width: 1px; - outline-color: var(--lookbook-input-toggle-active); -} - -input[type="range"]:focus::-moz-range-thumb { +input[type="range"]:focus::-webkit-slider-thumb, input[type="range"]:focus::-moz-range-thumb { outline-offset: 2px; outline-width: 1px; outline-color: var(--lookbook-input-toggle-active); @@ -1969,11 +1868,11 @@ input[type="range"]:focus::-moz-range-thumb { input[type="color"] { -webkit-appearance: none; + width: 46px; cursor: pointer; border-width: 1px; border-color: var(--lookbook-input-border); border-radius: .5rem; - width: 46px; } input[type="color"]::-webkit-color-swatch-wrapper { @@ -3431,9 +3330,9 @@ select.compact { } .tippy-arrow { - color: #333; width: 16px; height: 16px; + color: #333; } .tippy-arrow:before { @@ -3965,81 +3864,90 @@ select.compact { line-height: 1.75; } - .lg\:prose-base :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(p):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .lg\:prose-base :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; font-size: 1.25em; line-height: 1.6; } - .lg\:prose-base :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(blockquote):not(:where([class~="not-prose"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1em; } - .lg\:prose-base :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h1):not(:where([class~="not-prose"] *)) { margin-top: 0; margin-bottom: .888889em; font-size: 2.25em; line-height: 1.11111; } - .lg\:prose-base :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h2):not(:where([class~="not-prose"] *)) { margin-top: 2em; margin-bottom: 1em; font-size: 1.5em; line-height: 1.33333; } - .lg\:prose-base :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h3):not(:where([class~="not-prose"] *)) { margin-top: 1.6em; margin-bottom: .6em; font-size: 1.25em; line-height: 1.6; } - .lg\:prose-base :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h4):not(:where([class~="not-prose"] *)) { margin-top: 1.5em; margin-bottom: .5em; line-height: 1.5; } - .lg\:prose-base :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(img):not(:where([class~="not-prose"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\:prose-base :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; + .lg\:prose-base :where(video):not(:where([class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; } - .lg\:prose-base :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(figure):not(:where([class~="not-prose"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\:prose-base :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - border-radius: .3125rem; - padding: .1875em .375em; + .lg\:prose-base :where(figure > *):not(:where([class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; + } + + .lg\:prose-base :where(figcaption):not(:where([class~="not-prose"] *)) { + margin-top: .857143em; font-size: .875em; + line-height: 1.42857; } - .lg\:prose-base :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(code):not(:where([class~="not-prose"] *)) { font-size: .875em; } - .lg\:prose-base :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h2 code):not(:where([class~="not-prose"] *)) { + font-size: .875em; + } + + .lg\:prose-base :where(h3 code):not(:where([class~="not-prose"] *)) { font-size: .9em; } - .lg\:prose-base :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(pre):not(:where([class~="not-prose"] *)) { border-radius: .375rem; margin-top: 1.71429em; margin-bottom: 1.71429em; @@ -4048,122 +3956,114 @@ select.compact { line-height: 1.71429; } - .lg\:prose-base :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(ol):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; padding-left: 1.625em; } - .lg\:prose-base :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(ul):not(:where([class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; + } + + .lg\:prose-base :where(li):not(:where([class~="not-prose"] *)) { margin-top: .5em; margin-bottom: .5em; } - .lg\:prose-base :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(ol > li):not(:where([class~="not-prose"] *)) { + padding-left: .375em; + } + + .lg\:prose-base :where(ul > li):not(:where([class~="not-prose"] *)) { padding-left: .375em; } - .lg\:prose-base :where(.lg\:prose-base > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > ul > li p):not(:where([class~="not-prose"] *)) { margin-top: .75em; margin-bottom: .75em; } - .lg\:prose-base :where(.lg\:prose-base > ul > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > ul > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; } - .lg\:prose-base :where(.lg\:prose-base > ul > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > ul > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.25em; } - .lg\:prose-base :where(.lg\:prose-base > ol > li > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > ol > li > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 1.25em; } - .lg\:prose-base :where(.lg\:prose-base > ol > li > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > ol > li > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 1.25em; } - .lg\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { margin-top: .75em; margin-bottom: .75em; } - .lg\:prose-base :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; + .lg\:prose-base :where(hr):not(:where([class~="not-prose"] *)) { + margin-top: 3em; + margin-bottom: 3em; } - .lg\:prose-base :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 1.25em; + .lg\:prose-base :where(hr + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } - .lg\:prose-base :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .5em; - padding-left: 1.625em; + .lg\:prose-base :where(h2 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } - .lg\:prose-base :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 3em; - margin-bottom: 3em; + .lg\:prose-base :where(h3 + *):not(:where([class~="not-prose"] *)) { + margin-top: 0; } - .lg\:prose-base :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(h4 + *):not(:where([class~="not-prose"] *)) { margin-top: 0; } - .lg\:prose-base :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(table):not(:where([class~="not-prose"] *)) { font-size: .875em; line-height: 1.71429; } - .lg\:prose-base :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(thead th):not(:where([class~="not-prose"] *)) { padding-bottom: .571429em; padding-left: .571429em; padding-right: .571429em; } - .lg\:prose-base :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(thead th:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } - .lg\:prose-base :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(thead th:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } - .lg\:prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) { padding: .571429em; } - .lg\:prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) { padding-left: 0; } - .lg\:prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) { padding-right: 0; } - .lg\:prose-base :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\:prose-base :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\:prose-base :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) { - margin-top: .857143em; - font-size: .875em; - line-height: 1.42857; - } - - .lg\:prose-base :where(.lg\:prose-base > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > :first-child):not(:where([class~="not-prose"] *)) { margin-top: 0; } - .lg\:prose-base :where(.lg\:prose-base > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) { + .lg\:prose-base :where(.lg\:prose-base > :last-child):not(:where([class~="not-prose"] *)) { margin-bottom: 0; } } @@ -4236,15 +4136,15 @@ select.compact { opacity: 1; } -.prose-headings\:font-semibold :where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-headings\:font-semibold :where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"] *)) { font-weight: 600; } -.prose-h1\:font-bold :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-h1\:font-bold :where(h1):not(:where([class~="not-prose"] *)) { font-weight: 700; } -.prose-a\:text-lookbook-prose-link :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) { +.prose-a\:text-lookbook-prose-link :where(a):not(:where([class~="not-prose"] *)) { color: var(--lookbook-prose-link); } diff --git a/public/lookbook-assets/css/lookbook.css.map b/public/lookbook-assets/css/lookbook.css.map index f2434bc76..d1bd0cc49 100644 --- a/public/lookbook-assets/css/lookbook.css.map +++ b/public/lookbook-assets/css/lookbook.css.map @@ -1 +1 @@ -{"mappings":"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;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;AAOA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;;AAMA;;;;;;AAOA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;;AAMA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;;AAKA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAEA;;;;AAEA;;;;;;;;;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;;;AAEA;;;;;;;AAEA;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;;;;;AASA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;;;;AAWA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;;AAOA;;;;;;;AASA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;;AAmCA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAYA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAwBA;;;;AA0CA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAkBA;;;;AAQA;;;;;AAOA;;;;AAUA;EAEE;;;;;EAKA;;;;;EAKA;;;;;;;EAOA;;;;;;EAMA;;;;;;;EAOA;;;;;;;EAOA;;;;;;;EAOA;;;;;;EAMA;;;;;EAUA;;;;;EAKA;;;;;EAKA;;;;;;EASA;;;;EAQA;;;;EAIA;;;;;;;;;EAYA;;;;;;EAYA;;;;;EAKA;;;;EAQA;;;;;EAKA;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;EAKA;;;;;EAKA;;;;EAIA;;;;;EAKA;;;;;EAKA;;;;EAgBA;;;;;EAKA;;;;;;EAMA;;;;EAIA;;;;EAIA;;;;EAOA;;;;EAIA;;;;EAIA;;;;;EAKA;;;;;EAKA;;;;;;EAMA;;;;EAIA;;;;;AAKF;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;EAEE;;;;;EAKA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;;AAMF;EAEE;;;;;AAKF;EAEE;;;;EAIA;;;;EAIA;;;;;;EAMA;;;;EAIA;;;;;EAKA;;;;;AAKF;EAEE;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA","sources":["assets/css/lookbook.css"],"sourcesContent":["@import \"./fonts.css\";\n@import \"tailwindcss/base\";\n@import \"tailwindcss/components\";\n@import \"tailwindcss/utilities\";\n\n@import \"./tooltip.css\";\n\n@import-glob \"../../app/components/lookbook/**/*/component.css\";\n\n@layer base {\n html {\n @apply scroll-smooth h-screen w-screen;\n }\n\n @media screen and (prefers-reduced-motion: reduce) {\n html {\n @apply scroll-auto;\n }\n }\n\n body {\n @apply text-lookbook-text font-ui text-sm overflow-hidden w-screen;\n }\n\n [x-cloak] {\n @apply !hidden;\n }\n\n pre[class*=\"language-\"] {\n @apply !p-0 !m-0;\n }\n\n ::-webkit-scrollbar {\n @apply w-1 h-1;\n }\n\n ::-webkit-scrollbar-track {\n @apply bg-transparent;\n }\n\n ::-webkit-scrollbar-thumb {\n @apply transition-colors rounded-full\tbg-clip-content bg-lookbook-scrollbar;\n }\n\n ::-webkit-scrollbar-thumb:hover {\n @apply bg-lookbook-scrollbar-hover;\n }\n}\n\n@layer utilities {\n .bg-checked {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23f3f3f3' fill-opacity='1'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n }\n}\n\n@layer components {\n [type=\"text\"],\n [type=\"email\"],\n [type=\"url\"],\n [type=\"password\"],\n [type=\"number\"],\n [type=\"date\"],\n [type=\"datetime-local\"],\n [type=\"month\"],\n [type=\"search\"],\n [type=\"tel\"],\n [type=\"time\"],\n [type=\"week\"],\n textarea,\n select {\n @apply text-lookbook-input-text placeholder:text-lookbook-input-text-placeholder placeholder:italic;\n @apply border-lookbook-input-border focus:ring-lookbook-input-border-focus focus:border-lookbook-input-border-focus;\n @apply rounded-md text-sm w-full bg-lookbook-input-bg block;\n }\n\n input[type=\"range\"] {\n -webkit-appearance: none;\n appearance: none;\n background: transparent;\n cursor: pointer;\n width: 100%;\n }\n\n input[type=\"range\"]:focus {\n outline: none;\n }\n\n input[type=\"range\"]::-webkit-slider-runnable-track {\n @apply bg-lookbook-input-toggle;\n border-radius: 0.5rem;\n height: 0.5rem;\n }\n\n input[type=\"range\"]::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n @apply bg-lookbook-input-toggle-active;\n margin-top: -4px;\n border-radius: 0.5rem;\n height: 1rem;\n width: 1rem;\n }\n\n input[type=\"range\"]::-moz-range-track {\n @apply bg-lookbook-input-toggle;\n border-radius: 0.5rem;\n height: 0.5rem;\n }\n\n input[type=\"range\"]::-moz-range-thumb {\n @apply bg-lookbook-input-toggle-active;\n border: none;\n border-radius: 0.5rem;\n height: 1rem;\n width: 1rem;\n }\n\n input[type=\"range\"]:focus::-webkit-slider-thumb,\n input[type=\"range\"]:focus::-moz-range-thumb {\n @apply outline-1 outline-lookbook-input-toggle-active outline-offset-2;\n }\n\n input[type=\"color\"] {\n -webkit-appearance: none;\n width: 46px;\n @apply border border-lookbook-input-border rounded-lg cursor-pointer;\n }\n\n input[type=\"color\"]::-webkit-color-swatch-wrapper {\n padding: 0;\n }\n\n input[type=\"color\"]::-webkit-color-swatch {\n @apply border-0 rounded-lg;\n }\n\n select.compact {\n font-size: 0.8rem;\n line-height: 1.1rem;\n border-radius: 0.375rem;\n padding: 0.26rem 1.5rem 0.26rem 0.6rem;\n background-size: 1.2em 1.2em;\n background-position: right 0.4rem center;\n }\n\n #inspector .split-layout-gutter-horizontal {\n top: 4px;\n }\n}\n"],"names":[],"version":3,"file":"lookbook.css.map","sourceRoot":"../../../"} \ No newline at end of file +{"mappings":"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;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;AAOA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;;AAMA;;;;;;AAOA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;;AAMA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;AAMA;;;;;AAKA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAEA;;;;AAEA;;;;;;;;;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;;;AAEA;;;;;;;AAEA;;;;;;AAEA;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;AAEA;;;;;;;;AAEA;;;;;;;;AASA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;;;;AAWA;;;;;;AAMA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CA;;;;AAIA;;;;;;AAMA;;;;AAIA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;;AAOA;;;;;;;AASA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;;AAmCA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;;AAOA;;;;AAMA;;;;AAMA;;;;AAYA;;;;AAMA;;;;AAMA;;;;;AAOA;;;;AAMA;;;;AAwBA;;;;AA0CA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAMA;;;;AAkBA;;;;AAQA;;;;;AAOA;;;;AAUA;EAEE;;;;;EAKA;;;;;EAKA;;;;;;;EAOA;;;;;;EAMA;;;;;;;EAOA;;;;;;;EAOA;;;;;;;EAOA;;;;;;EAMA;;;;;EAKA;;;;;EAKA;;;;;EAKA;;;;;EAKA;;;;;;EAMA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;;;;;EAYA;;;;;;EAMA;;;;;;EAMA;;;;;EAKA;;;;EAIA;;;;EAIA;;;;;EAKA;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;EAKA;;;;;EAKA;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;EAKA;;;;;;EAMA;;;;EAIA;;;;EAIA;;;;EAOA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;AAKF;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;;;;;AAKA;;;;;;AAMA;;;;;;AAMA;;;;AAIA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA;EAEE;;;;;EAKA;;;;EAIA;;;;EAIA;;;;EAIA;;;;;;AAMF;EAEE;;;;;AAKF;EAEE;;;;EAIA;;;;EAIA;;;;;;EAMA;;;;EAIA;;;;;EAKA;;;;;AAKF;EAEE;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA;;;;EAIA","sources":["assets/css/lookbook.css"],"sourcesContent":["@import \"./fonts.css\";\n@import \"tailwindcss/base\";\n@import \"tailwindcss/components\";\n@import \"tailwindcss/utilities\";\n\n@import \"./tooltip.css\";\n\n@import-glob \"../../app/components/lookbook/**/*/component.css\";\n\n@layer base {\n html {\n @apply scroll-smooth h-screen w-screen;\n }\n\n @media screen and (prefers-reduced-motion: reduce) {\n html {\n @apply scroll-auto;\n }\n }\n\n body {\n @apply text-lookbook-text font-ui text-sm overflow-hidden w-screen;\n }\n\n [x-cloak] {\n @apply !hidden;\n }\n\n pre[class*=\"language-\"] {\n @apply !p-0 !m-0;\n }\n\n ::-webkit-scrollbar {\n @apply w-1 h-1;\n }\n\n ::-webkit-scrollbar-track {\n @apply bg-transparent;\n }\n\n ::-webkit-scrollbar-thumb {\n @apply transition-colors rounded-full\tbg-clip-content bg-lookbook-scrollbar;\n }\n\n ::-webkit-scrollbar-thumb:hover {\n @apply bg-lookbook-scrollbar-hover;\n }\n}\n\n@layer utilities {\n .bg-checked {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23f3f3f3' fill-opacity='1'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n }\n}\n\n@layer components {\n [type=\"text\"],\n [type=\"email\"],\n [type=\"url\"],\n [type=\"password\"],\n [type=\"number\"],\n [type=\"date\"],\n [type=\"datetime-local\"],\n [type=\"month\"],\n [type=\"search\"],\n [type=\"tel\"],\n [type=\"time\"],\n [type=\"week\"],\n textarea,\n select {\n @apply text-lookbook-input-text placeholder:text-lookbook-input-text-placeholder placeholder:italic;\n @apply border-lookbook-input-border focus:ring-lookbook-input-border-focus focus:border-lookbook-input-border-focus;\n @apply rounded-md text-sm w-full bg-lookbook-input-bg block;\n }\n\n input[type=\"range\"] {\n -webkit-appearance: none;\n appearance: none;\n background: transparent;\n cursor: pointer;\n width: 100%;\n }\n\n input[type=\"range\"]:focus {\n outline: none;\n }\n\n input[type=\"range\"]::-webkit-slider-runnable-track {\n @apply bg-lookbook-input-toggle;\n border-radius: 0.5rem;\n height: 0.5rem;\n }\n\n input[type=\"range\"]::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n @apply bg-lookbook-input-toggle-active;\n margin-top: -4px;\n border-radius: 0.5rem;\n height: 1rem;\n width: 1rem;\n }\n\n input[type=\"range\"]::-moz-range-track {\n @apply bg-lookbook-input-toggle;\n border-radius: 0.5rem;\n height: 0.5rem;\n }\n\n input[type=\"range\"]::-moz-range-thumb {\n @apply bg-lookbook-input-toggle-active;\n border: none;\n border-radius: 0.5rem;\n height: 1rem;\n width: 1rem;\n }\n\n input[type=\"range\"]:focus::-webkit-slider-thumb,\n input[type=\"range\"]:focus::-moz-range-thumb {\n @apply outline-1 outline-lookbook-input-toggle-active outline-offset-2;\n }\n\n input[type=\"color\"] {\n -webkit-appearance: none;\n width: 46px;\n @apply border border-lookbook-input-border rounded-lg cursor-pointer;\n }\n\n input[type=\"color\"]::-webkit-color-swatch-wrapper {\n padding: 0;\n }\n\n input[type=\"color\"]::-webkit-color-swatch {\n @apply border-0 rounded-lg;\n }\n\n select.compact {\n font-size: 0.8rem;\n line-height: 1.1rem;\n border-radius: 0.375rem;\n padding: 0.26rem 1.5rem 0.26rem 0.6rem;\n background-size: 1.2em 1.2em;\n background-position: right 0.4rem center;\n }\n\n #inspector .split-layout-gutter-horizontal {\n top: 4px;\n }\n}\n"],"names":[],"version":3,"file":"lookbook.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/css/themes/blue.css.map b/public/lookbook-assets/css/themes/blue.css.map index 2038ddd0c..e5c4833a7 100644 --- a/public/lookbook-assets/css/themes/blue.css.map +++ b/public/lookbook-assets/css/themes/blue.css.map @@ -1 +1 @@ -{"mappings":"AAAA","sources":["assets/css/themes/blue.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.blue.50\");\n --lookbook-accent-100: theme(\"colors.blue.100\");\n --lookbook-accent-200: theme(\"colors.blue.200\");\n --lookbook-accent-300: theme(\"colors.blue.300\");\n --lookbook-accent-400: theme(\"colors.blue.400\");\n --lookbook-accent-500: theme(\"colors.blue.500\");\n --lookbook-accent-600: theme(\"colors.blue.600\");\n --lookbook-accent-700: theme(\"colors.blue.700\");\n --lookbook-accent-800: theme(\"colors.blue.800\");\n --lookbook-accent-900: theme(\"colors.blue.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"blue.css.map","sourceRoot":"../../../../"} \ No newline at end of file +{"mappings":"AAAA","sources":["assets/css/themes/blue.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.blue.50\");\n --lookbook-accent-100: theme(\"colors.blue.100\");\n --lookbook-accent-200: theme(\"colors.blue.200\");\n --lookbook-accent-300: theme(\"colors.blue.300\");\n --lookbook-accent-400: theme(\"colors.blue.400\");\n --lookbook-accent-500: theme(\"colors.blue.500\");\n --lookbook-accent-600: theme(\"colors.blue.600\");\n --lookbook-accent-700: theme(\"colors.blue.700\");\n --lookbook-accent-800: theme(\"colors.blue.800\");\n --lookbook-accent-900: theme(\"colors.blue.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"blue.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/css/themes/green.css.map b/public/lookbook-assets/css/themes/green.css.map index 5d8296b97..c63a42f95 100644 --- a/public/lookbook-assets/css/themes/green.css.map +++ b/public/lookbook-assets/css/themes/green.css.map @@ -1 +1 @@ -{"mappings":"AAAA","sources":["assets/css/themes/green.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.green.50\");\n --lookbook-accent-100: theme(\"colors.green.100\");\n --lookbook-accent-200: theme(\"colors.green.200\");\n --lookbook-accent-300: theme(\"colors.green.300\");\n --lookbook-accent-400: theme(\"colors.green.400\");\n --lookbook-accent-500: theme(\"colors.green.500\");\n --lookbook-accent-600: theme(\"colors.green.600\");\n --lookbook-accent-700: theme(\"colors.green.700\");\n --lookbook-accent-800: theme(\"colors.green.800\");\n --lookbook-accent-900: theme(\"colors.green.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"green.css.map","sourceRoot":"../../../../"} \ No newline at end of file +{"mappings":"AAAA","sources":["assets/css/themes/green.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.green.50\");\n --lookbook-accent-100: theme(\"colors.green.100\");\n --lookbook-accent-200: theme(\"colors.green.200\");\n --lookbook-accent-300: theme(\"colors.green.300\");\n --lookbook-accent-400: theme(\"colors.green.400\");\n --lookbook-accent-500: theme(\"colors.green.500\");\n --lookbook-accent-600: theme(\"colors.green.600\");\n --lookbook-accent-700: theme(\"colors.green.700\");\n --lookbook-accent-800: theme(\"colors.green.800\");\n --lookbook-accent-900: theme(\"colors.green.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"green.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/css/themes/indigo.css.map b/public/lookbook-assets/css/themes/indigo.css.map index acaec3341..81bbf11f7 100644 --- a/public/lookbook-assets/css/themes/indigo.css.map +++ b/public/lookbook-assets/css/themes/indigo.css.map @@ -1 +1 @@ -{"mappings":"AAAA","sources":["assets/css/themes/indigo.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.indigo.50\");\n --lookbook-accent-100: theme(\"colors.indigo.100\");\n --lookbook-accent-200: theme(\"colors.indigo.200\");\n --lookbook-accent-300: theme(\"colors.indigo.300\");\n --lookbook-accent-400: theme(\"colors.indigo.400\");\n --lookbook-accent-500: theme(\"colors.indigo.500\");\n --lookbook-accent-600: theme(\"colors.indigo.600\");\n --lookbook-accent-700: theme(\"colors.indigo.700\");\n --lookbook-accent-800: theme(\"colors.indigo.800\");\n --lookbook-accent-900: theme(\"colors.indigo.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"indigo.css.map","sourceRoot":"../../../../"} \ No newline at end of file +{"mappings":"AAAA","sources":["assets/css/themes/indigo.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.indigo.50\");\n --lookbook-accent-100: theme(\"colors.indigo.100\");\n --lookbook-accent-200: theme(\"colors.indigo.200\");\n --lookbook-accent-300: theme(\"colors.indigo.300\");\n --lookbook-accent-400: theme(\"colors.indigo.400\");\n --lookbook-accent-500: theme(\"colors.indigo.500\");\n --lookbook-accent-600: theme(\"colors.indigo.600\");\n --lookbook-accent-700: theme(\"colors.indigo.700\");\n --lookbook-accent-800: theme(\"colors.indigo.800\");\n --lookbook-accent-900: theme(\"colors.indigo.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"indigo.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/css/themes/rose.css.map b/public/lookbook-assets/css/themes/rose.css.map index c25374e31..4cbaf7e0c 100644 --- a/public/lookbook-assets/css/themes/rose.css.map +++ b/public/lookbook-assets/css/themes/rose.css.map @@ -1 +1 @@ -{"mappings":"AAAA","sources":["assets/css/themes/rose.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.rose.50\");\n --lookbook-accent-100: theme(\"colors.rose.100\");\n --lookbook-accent-200: theme(\"colors.rose.200\");\n --lookbook-accent-300: theme(\"colors.rose.300\");\n --lookbook-accent-400: theme(\"colors.rose.400\");\n --lookbook-accent-500: theme(\"colors.rose.500\");\n --lookbook-accent-600: theme(\"colors.rose.600\");\n --lookbook-accent-700: theme(\"colors.rose.700\");\n --lookbook-accent-800: theme(\"colors.rose.800\");\n --lookbook-accent-900: theme(\"colors.rose.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"rose.css.map","sourceRoot":"../../../../"} \ No newline at end of file +{"mappings":"AAAA","sources":["assets/css/themes/rose.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.rose.50\");\n --lookbook-accent-100: theme(\"colors.rose.100\");\n --lookbook-accent-200: theme(\"colors.rose.200\");\n --lookbook-accent-300: theme(\"colors.rose.300\");\n --lookbook-accent-400: theme(\"colors.rose.400\");\n --lookbook-accent-500: theme(\"colors.rose.500\");\n --lookbook-accent-600: theme(\"colors.rose.600\");\n --lookbook-accent-700: theme(\"colors.rose.700\");\n --lookbook-accent-800: theme(\"colors.rose.800\");\n --lookbook-accent-900: theme(\"colors.rose.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"rose.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/css/themes/zinc.css.map b/public/lookbook-assets/css/themes/zinc.css.map index 7146e41b5..09bdb0362 100644 --- a/public/lookbook-assets/css/themes/zinc.css.map +++ b/public/lookbook-assets/css/themes/zinc.css.map @@ -1 +1 @@ -{"mappings":"AAAA","sources":["assets/css/themes/zinc.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.zinc.50\");\n --lookbook-accent-100: theme(\"colors.zinc.100\");\n --lookbook-accent-200: theme(\"colors.zinc.200\");\n --lookbook-accent-300: theme(\"colors.zinc.300\");\n --lookbook-accent-400: theme(\"colors.zinc.400\");\n --lookbook-accent-500: theme(\"colors.zinc.500\");\n --lookbook-accent-600: theme(\"colors.zinc.600\");\n --lookbook-accent-700: theme(\"colors.zinc.700\");\n --lookbook-accent-800: theme(\"colors.zinc.800\");\n --lookbook-accent-900: theme(\"colors.zinc.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"zinc.css.map","sourceRoot":"../../../../"} \ No newline at end of file +{"mappings":"AAAA","sources":["assets/css/themes/zinc.css"],"sourcesContent":[":root {\n --lookbook-white: theme(\"colors.white\");\n --lookbook-accent-50: theme(\"colors.zinc.50\");\n --lookbook-accent-100: theme(\"colors.zinc.100\");\n --lookbook-accent-200: theme(\"colors.zinc.200\");\n --lookbook-accent-300: theme(\"colors.zinc.300\");\n --lookbook-accent-400: theme(\"colors.zinc.400\");\n --lookbook-accent-500: theme(\"colors.zinc.500\");\n --lookbook-accent-600: theme(\"colors.zinc.600\");\n --lookbook-accent-700: theme(\"colors.zinc.700\");\n --lookbook-accent-800: theme(\"colors.zinc.800\");\n --lookbook-accent-900: theme(\"colors.zinc.900\");\n --lookbook-base-50: theme(\"colors.zinc.50\");\n --lookbook-base-100: theme(\"colors.zinc.100\");\n --lookbook-base-200: theme(\"colors.zinc.200\");\n --lookbook-base-300: theme(\"colors.zinc.300\");\n --lookbook-base-400: theme(\"colors.zinc.400\");\n --lookbook-base-500: theme(\"colors.zinc.500\");\n --lookbook-base-600: theme(\"colors.zinc.600\");\n --lookbook-base-700: theme(\"colors.zinc.700\");\n --lookbook-base-800: theme(\"colors.zinc.800\");\n --lookbook-base-900: theme(\"colors.zinc.900\");\n --lookbook-text: var(--lookbook-base-800);\n --lookbook-divider: var(--lookbook-base-300);\n --lookbook-draggable-hint: rgb(224 231 255 / 0.2);\n --lookbook-icon-button-stroke: var(--lookbook-base-400);\n --lookbook-icon-button-stroke-hover: var(--lookbook-accent-600);\n --lookbook-button-bg: var(--lookbook-accent-500);\n --lookbook-button-bg-hover: var(--lookbook-accent-600);\n --lookbook-button-text: var(--lookbook-white);\n --lookbook-tooltip-bg: var(--lookbook-accent-500);\n --lookbook-tooltip-text: var(--lookbook-white);\n --lookbook-dropdown-bg: var(--lookbook-toolbar-bg);\n --lookbook-dropdown-text: var(--lookbook-text);\n --lookbook-dropdown-divider: var(--lookbook-divider);\n --lookbook-scrollbar: var(--lookbook-base-200);\n --lookbook-scrollbar-hover: var(--lookbook-base-300);\n --lookbook-toolbar-bg: var(--lookbook-white);\n --lookbook-toolbar-divider: var(--lookbook-divider);\n --lookbook-nav-text: var(--lookbook-text);\n --lookbook-nav-toggle: var(--lookbook-base-500);\n --lookbook-nav-icon-stroke: var(--lookbook-accent-500);\n --lookbook-nav-item-hover: var(--lookbook-base-100);\n --lookbook-nav-item-active: var(--lookbook-accent-50);\n --lookbook-input-bg: var(--lookbook-white);\n --lookbook-input-border: var(--lookbook-base-300);\n --lookbook-input-border-focus: var(--lookbook-accent-200);\n --lookbook-input-text: var(--lookbook-base-600);\n --lookbook-input-text-placeholder: var(--lookbook-base-400);\n --lookbook-input-toggle: var(--lookbook-base-300);\n --lookbook-input-toggle-active: var(--lookbook-accent-500);\n --lookbook-prose-bg: var(--lookbook-white);\n --lookbook-prose-text: var(--lookbook-base-600);\n --lookbook-prose-link: var(--lookbook-accent-900);\n --lookbook-tabs-text: var(--lookbook-base-500);\n --lookbook-tabs-text-hover: var(--lookbook-base-700);\n --lookbook-tabs-text-disabled: var(--lookbook-base-300);\n --lookbook-tabs-border-active: var(--lookbook-accent-400);\n --lookbook-viewport-handle: var(--lookbook-white);\n --lookbook-viewport-handle-hover: var(--lookbook-draggable-hint);\n --lookbook-viewport-handle-icon-stroke: var(--lookbook-base-300);\n --lookbook-viewport-handle-icon-stroke-hover: var(--lookbook-base-700);\n --lookbook-sidebar-bg: var(--lookbook-base-50);\n --lookbook-page-bg: var(--lookbook-white);\n --lookbook-drawer-bg: var(--lookbook-base-50);\n --lookbook-params-editor-bg: var(--lookbook-white);\n --lookbook-header-bg: var(--lookbook-accent-600);\n --lookbook-header-text: var(--lookbook-white);\n --lookbook-header-border: var(--lookbook-accent-700);\n --lookbook-message-bg: var(--lookbook-white);\n --lookbook-message-border: var(--lookbook-divider);\n --lookbook-message-title: var(--lookbook-base-600);\n --lookbook-message-text: var(--lookbook-text);\n --lookbook-page-header-bg: var(--lookbook-base-50);\n --lookbook-page-header-text: var(--lookbook-text);\n --lookbook-page-header-border: var(--lookbook-divider);\n --lookbook-embed-title: var(--lookbook-text);\n --lookbook-branding-text: var(--lookbook-header-text);\n}"],"names":[],"version":3,"file":"zinc.css.map"} \ No newline at end of file diff --git a/public/lookbook-assets/js/iframe.js b/public/lookbook-assets/js/iframe.js index 447dec93e..1b66e3b12 100644 --- a/public/lookbook-assets/js/iframe.js +++ b/public/lookbook-assets/js/iframe.js @@ -1,582 +1,5 @@ -// modules are defined as an array -// [ module function, map of requires ] -// -// map of requires is short require name -> numeric require -// -// anything defined in a previous bundle is accessed via the -// orig method which is the require for previous bundles - -(function (modules, entry, mainEntry, parcelRequireName, globalName) { - /* eslint-disable no-undef */ - var globalObject = - typeof globalThis !== 'undefined' - ? globalThis - : typeof self !== 'undefined' - ? self - : typeof window !== 'undefined' - ? window - : typeof global !== 'undefined' - ? global - : {}; - /* eslint-enable no-undef */ - - // Save the require from previous bundle to this closure if any - var previousRequire = - typeof globalObject[parcelRequireName] === 'function' && - globalObject[parcelRequireName]; - - var cache = previousRequire.cache || {}; - // Do not use `require` to prevent Webpack from trying to bundle this call - var nodeRequire = - typeof module !== 'undefined' && - typeof module.require === 'function' && - module.require.bind(module); - - function newRequire(name, jumped) { - if (!cache[name]) { - if (!modules[name]) { - // if we cannot find the module within our internal map or - // cache jump to the current global require ie. the last bundle - // that was added to the page. - var currentRequire = - typeof globalObject[parcelRequireName] === 'function' && - globalObject[parcelRequireName]; - if (!jumped && currentRequire) { - return currentRequire(name, true); - } - - // If there are other bundles on this page the require from the - // previous one is saved to 'previousRequire'. Repeat this as - // many times as there are bundles until the module is found or - // we exhaust the require chain. - if (previousRequire) { - return previousRequire(name, true); - } - - // Try the node require function if it exists. - if (nodeRequire && typeof name === 'string') { - return nodeRequire(name); - } - - var err = new Error("Cannot find module '" + name + "'"); - err.code = 'MODULE_NOT_FOUND'; - throw err; - } - - localRequire.resolve = resolve; - localRequire.cache = {}; - - var module = (cache[name] = new newRequire.Module(name)); - - modules[name][0].call( - module.exports, - localRequire, - module, - module.exports, - this - ); - } - - return cache[name].exports; - - function localRequire(x) { - var res = localRequire.resolve(x); - return res === false ? {} : newRequire(res); - } - - function resolve(x) { - var id = modules[name][1][x]; - return id != null ? id : x; - } - } - - function Module(moduleName) { - this.id = moduleName; - this.bundle = newRequire; - this.exports = {}; - } - - newRequire.isParcelRequire = true; - newRequire.Module = Module; - newRequire.modules = modules; - newRequire.cache = cache; - newRequire.parent = previousRequire; - newRequire.register = function (id, exports) { - modules[id] = [ - function (require, module) { - module.exports = exports; - }, - {}, - ]; - }; - - Object.defineProperty(newRequire, 'root', { - get: function () { - return globalObject[parcelRequireName]; - }, - }); - - globalObject[parcelRequireName] = newRequire; - - for (var i = 0; i < entry.length; i++) { - newRequire(entry[i]); - } - - if (mainEntry) { - // Expose entry point to Node, AMD or browser globals - // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js - var mainExports = newRequire(mainEntry); - - // CommonJS - if (typeof exports === 'object' && typeof module !== 'undefined') { - module.exports = mainExports; - - // RequireJS - } else if (typeof define === 'function' && define.amd) { - define(function () { - return mainExports; - }); - - //