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,40 @@
@use 'sass:map';
@use '../../styles/settings';
@use '../../styles/tools';
// VSystemBar
$system-bar-background: rgba(var(--v-theme-surface-light)) !default;
$system-bar-border-radius: map.get(settings.$rounded, 0) !default;
$system-bar-color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity)) !default;
$system-bar-elevation: 0 !default;
$system-bar-flex: 1 1 auto !default;
$system-bar-font-size: tools.map-deep-get(settings.$typography, 'caption', 'size') !default;
$system-bar-font-weight: tools.map-deep-get(settings.$typography, 'caption', 'weight') !default;
$system-bar-height: 24px !default;
$system-bar-icon-opacity: var(--v-medium-emphasis-opacity) !default;
$system-bar-justify-content: flex-end !default;
$system-bar-letter-spacing: tools.map-deep-get(settings.$typography, 'caption', 'letter-spacing') !default;
$system-bar-lights-out-background: rgba(var(--v-theme-background), 0.7) !default;
$system-bar-line-height: tools.map-deep-get(settings.$typography, 'caption', 'line-height') !default;
$system-bar-padding-x: 8px !default;
$system-bar-positions: absolute fixed !default;
$system-bar-text-align: end !default;
$system-bar-text-transform: tools.map-deep-get(settings.$typography, 'caption', 'text-transform') !default;
$system-bar-window-height: 32px !default;
// Lists
$system-bar-theme: (
$system-bar-background,
$system-bar-color
) !default;
$system-bar-typography: (
$system-bar-font-size,
$system-bar-font-weight,
$system-bar-letter-spacing,
$system-bar-line-height,
$system-bar-text-transform
) !default;
// Deprecated
$system-bar-padding: 0 8px !default;