diff --git a/biome.json b/biome.json index ce8f90e..f782e6b 100644 --- a/biome.json +++ b/biome.json @@ -1,7 +1,7 @@ { - "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json", + "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, - "files": { "includes": ["**", "!!**/dist", "!!**/*.vue", "!!docs/.vitepress/theme"] }, + "files": { "includes": ["**", "!!**/dist", "!!docs/.vitepress/theme"] }, "formatter": { "enabled": true, "formatWithErrors": false, @@ -14,7 +14,10 @@ }, "linter": { "enabled": true, - "rules": { "recommended": true } + "rules": { "recommended": true }, + "domains": { + "vue": "recommended" + } }, "javascript": { "formatter": { @@ -33,18 +36,11 @@ "html": { "formatter": { "indentScriptAndStyle": false, + "enabled": true, "selfCloseVoidElements": "always" - } + }, + "experimentalFullSupportEnabled": true }, - "overrides": [ - { - "includes": ["**/*.md"], - "formatter": { - "indentStyle": "space", - "indentWidth": 2 - } - } - ], "assist": { "enabled": true, "actions": { diff --git a/docs/components/playground.vue b/docs/components/playground.vue index d04b3d7..57d04be 100644 --- a/docs/components/playground.vue +++ b/docs/components/playground.vue @@ -1,76 +1,85 @@ \ No newline at end of file +.container { + width: 100%; + height: 500px; + display: block; + position: relative; + overflow: hidden; + border-radius: 12px; + box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15); + border: 1px solid rgba(134, 134, 134, 0.4); + user-select: none; +} +.test-square { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + top: calc(50% - 150px); + left: calc(50% - 150px); + width: 300px; + height: 300px; + background-color: rgb(72, 130, 255); + border-radius: 16px; + transform-origin: 0 0; + box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3); + font-size: 100px; + font-weight: bold; +} + diff --git a/tests/dev/index.html b/tests/dev/index.html index 3430c29..edae5f6 100644 --- a/tests/dev/index.html +++ b/tests/dev/index.html @@ -1,42 +1,42 @@ - - - - Pointeract Test - - - -
- - - \ No newline at end of file + + + + Pointeract Test + + + +
+ + +