File tree Expand file tree Collapse file tree
packages/core/application Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -298,7 +298,6 @@ export class ApplicationCommon {
298298
299299 private setRootViewCSSClasses ( rootView : View ) : void {
300300 const platform = Device . os . toLowerCase ( ) ;
301- const majorVersion = Math . floor ( SDK_VERSION ) ;
302301 const deviceType = Device . deviceType . toLowerCase ( ) ;
303302 const orientation = this . orientation ( ) ;
304303 const systemAppearance = this . systemAppearance ( ) ;
@@ -308,7 +307,7 @@ export class ApplicationCommon {
308307 CSSUtils . pushToSystemCssClasses ( `${ CSSUtils . CLASS_PREFIX } ${ platform } ` ) ;
309308
310309 // SDK Version CSS classes
311- CSSUtils . pushToSystemCssClasses ( `${ CSSUtils . CLASS_PREFIX } ${ platform } -${ majorVersion } ` ) ;
310+ CSSUtils . pushToSystemCssClasses ( `${ CSSUtils . CLASS_PREFIX } ${ platform } -${ Math . floor ( SDK_VERSION ) } ` ) ;
312311 }
313312
314313 if ( deviceType ) {
You can’t perform that action at this time.
0 commit comments