@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
17 lines (16 loc) • 391 B
JavaScript
import { createStyles } from "@mantine/core";
const useStyles = createStyles((theme) => ({
modal: {
borderTop: `8px solid ${theme.colors.error[6]}`,
// subtract 64px of padding top and bottom of the dialog
maxHeight: "calc(100vh - 128px)",
overflowY: "auto"
},
title: {
marginBottom: 0
}
}));
export {
useStyles
};
//# sourceMappingURL=ErrorModal.styles.js.map