We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ba7f27 commit bc2d8f2Copy full SHA for bc2d8f2
1 file changed
packages/core/application/application-common.ts
@@ -307,6 +307,9 @@ export class ApplicationCommon {
307
CSSUtils.pushToSystemCssClasses(`${CSSUtils.CLASS_PREFIX}${platform}`);
308
309
// SDK Version CSS classes
310
+ // Add exact version class (e.g., .ns-ios-26 or .ns-android-36)
311
+ // this acts like 'gte' for that major version range
312
+ // e.g., if user wants iOS 27, they can add .ns-ios-27 specifiers
313
CSSUtils.pushToSystemCssClasses(`${CSSUtils.CLASS_PREFIX}${platform}-${Math.floor(SDK_VERSION)}`);
314
}
315
0 commit comments