2018-10-18 08:28:08 +00:00
|
|
|
import { BoxModel, createStyleSheet } from '../../styles';
|
2017-09-22 20:09:15 +00:00
|
|
|
|
|
|
|
/**
|
2017-11-14 20:18:16 +00:00
|
|
|
* The React {@code Component} styles of {@code Dialog}.
|
2017-09-22 20:09:15 +00:00
|
|
|
*/
|
2018-10-18 08:28:08 +00:00
|
|
|
export default createStyleSheet({
|
2018-09-04 07:29:48 +00:00
|
|
|
/**
|
|
|
|
* Unified container for a consistent Dialog style.
|
|
|
|
*/
|
|
|
|
dialogContainer: {
|
|
|
|
paddingHorizontal: BoxModel.padding,
|
|
|
|
paddingVertical: 1.5 * BoxModel.padding
|
2017-11-03 10:10:58 +00:00
|
|
|
}
|
|
|
|
});
|