Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
@use '../settings'
.blockquote
padding: settings.$spacer*4 0 settings.$spacer*4 settings.$spacer*6
font-size: settings.$blockquote-font-size
font-weight: settings.$blockquote-font-weight

View File

@@ -0,0 +1,23 @@
@use '../settings'
html
font-family: settings.$body-font-family
line-height: settings.$line-height-root
font-size: settings.$font-size-root
overflow-x: hidden
text-rendering: optimizeLegibility
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
html.overflow-y-hidden
overflow-y: hidden !important
:root
--v-theme-overlay-multiplier: 1
--v-scrollbar-offset: 0px
// iOS Safari hack to allow click events on body
@supports (-webkit-touch-callout: none)
body
cursor: pointer

View File

@@ -0,0 +1,2 @@
@use './blockquote'
@use './global'