mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 12:27:51 +00:00
* feat(dynamic-branding) sdk customization * feat(dynamic-branding) unsetDynamicBranding when we disconnect * feat(dynamic-branding) added branding colors to conference * feat(dynamic-branding) extracted logger to its own file * feat(dynamic-branding) reverted style change * feat(dynamic-branding) unset branding if connection failed * feat(dynamic-branding) removed index.js, updated imports, added ImageBackground component * feat(dynamic-branding) created logger feature object * feat(dynamic-branding) moved brandingStyles to mapStateToProps, used SvGUri * feat(dynamic-branding) created BrandingImageBackground component, fixed styles * feat(dynamic-branding) moved BrandingImageBackground to dynamic-branding feature * feat(dynamic-branding) fixed linter * feat(dynamic-branding) added style comment
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
export default {
|
|
|
|
/**
|
|
* {@code BrandingImageBackground} Style.
|
|
*/
|
|
brandingImageBackgroundSvg: {
|
|
position: 'absolute' as 'absolute'
|
|
},
|
|
|
|
brandingImageBackground: {
|
|
height: '100%',
|
|
position: 'absolute' as 'absolute',
|
|
width: '100%'
|
|
}
|
|
};
|