From 346614edc3d0282f9664f79e3d555c3ab88cf9e3 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 29 Apr 2026 17:36:20 +0000 Subject: [PATCH] :bug: Fix SCSS mixin names in v2_15 release modal styles Rename 5 deprecated mixin calls from camelCase to kebab-case to match the actual mixin names defined in common-refactor.scss: - deprecated.flexCenter -> deprecated.flex-center - deprecated.headlineSmallTypography -> deprecated.headline-small-typography - deprecated.headlineLargeTypography -> deprecated.headline-large-typography - deprecated.bodyLargeTypography -> deprecated.body-large-typography - deprecated.bodyMediumTypography -> deprecated.body-medium-typography This fixes the "Undefined mixin" SCSS compilation error. Signed-off-by: Andrey Antukh --- frontend/src/app/main/ui/releases/v2_15.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/main/ui/releases/v2_15.scss b/frontend/src/app/main/ui/releases/v2_15.scss index 68603d9658..40c8f5316f 100644 --- a/frontend/src/app/main/ui/releases/v2_15.scss +++ b/frontend/src/app/main/ui/releases/v2_15.scss @@ -42,8 +42,8 @@ } .version-tag { - @include deprecated.flexCenter; - @include deprecated.headlineSmallTypography; + @include deprecated.flex-center; + @include deprecated.headline-small-typography; height: deprecated.$s-32; width: deprecated.$s-96; @@ -53,7 +53,7 @@ } .modal-title { - @include deprecated.headlineLargeTypography; + @include deprecated.headline-large-typography; color: var(--modal-title-foreground-color); } @@ -72,20 +72,20 @@ } .feature-title { - @include deprecated.bodyLargeTypography; + @include deprecated.body-large-typography; color: var(--modal-title-foreground-color); } .feature-content { - @include deprecated.bodyMediumTypography; + @include deprecated.body-medium-typography; margin: 0; color: var(--modal-text-foreground-color); } .feature-list { - @include deprecated.bodyMediumTypography; + @include deprecated.body-medium-typography; color: var(--modal-text-foreground-color); list-style: disc;