diff options
| author | Max Nanis | 2025-06-24 19:04:01 +0700 |
|---|---|---|
| committer | Max Nanis | 2025-06-24 19:04:01 +0700 |
| commit | 80539188ef6814b4202d677d62b761bd5b670574 (patch) | |
| tree | bf922d15d2cc634c958b14abb4bdb6893bf9154a /src/index.css | |
| parent | 8138549f64403874eb7c7ddfbde1cc2cc2c03695 (diff) | |
| download | panel-ui-80539188ef6814b4202d677d62b761bd5b670574.tar.gz panel-ui-80539188ef6814b4202d677d62b761bd5b670574.zip | |
Dynamic height adjustment for widget size. CSS inject by JS for single file
Diffstat (limited to 'src/index.css')
| -rw-r--r-- | src/index.css | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/index.css b/src/index.css index e3beb23..39f436b 100644 --- a/src/index.css +++ b/src/index.css @@ -4,11 +4,6 @@ @tailwind components; @tailwind utilities; -#testD4rN { - max-width: 800px; - max-height: 400px !important; -} - @custom-variant dark (&:is(.dark *)); @theme inline { @@ -145,4 +140,16 @@ body { @apply bg-background text-foreground; } -}
\ No newline at end of file +} + +#testD4rN { + /*max-width: 800px;*/ + /*max-height: 400px !important;*/ + + height: 500px; + width: 800px; + border: 1px solid red; + position: absolute; + top: 80px; + left: 80px; +} |
