mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-03-28 22:40:17 +00:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
import { BoxModel, createStyleSheet } from '../../styles';
|
|
|
|
/**
|
|
* The React {@code Component} styles of {@code Dialog}.
|
|
*/
|
|
export default createStyleSheet({
|
|
/**
|
|
* Unified container for a consistent Dialog style.
|
|
*/
|
|
dialogContainer: {
|
|
paddingHorizontal: BoxModel.padding,
|
|
paddingVertical: 1.5 * BoxModel.padding
|
|
}
|
|
});
|