Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/base/dialog/components/styles.js

21 lines
496 B

import { ColorPalette, createStyleSheet } from '../../styles';
/**
* The React <tt>Component</tt> styles of the feature base/dialog.
*/
export default createStyleSheet({
/**
* The style of the <tt>Text</tt> in a <tt>Dialog</tt> button.
*/
buttonText: {
color: ColorPalette.blue
},
/**
* The style of the <tt>Text</tt> in a <tt>Dialog</tt> button which is
* disabled.
*/
disabledButtonText: {
color: ColorPalette.darkGrey
}
});