如何在next.js中覆盖react-skylight最小高度?

时间:2019-05-30 05:42:42

标签: html css reactjs next.js

这些天,我正在开发next.js项目。我正在使用react-skylight创建模态。我想覆盖min-height。天窗中已经有了skylight-dialog CSS类。我已经附加了有关CSS和prop的图像。

const myBigGreenDialog = {
     backgroundColor: '#ffffff',
     color: '#000',
     width: '50%',
     height: '200px',
     padding: '3rem'
   }; 

enter image description here

1 个答案:

答案 0 :(得分:1)

在2018-04-03 v0.5.1中更改天窗将对话框样式的高度更改为minHeight。试试这个道具。

const myBigGreenDialog = {
  backgroundColor: '#ffffff',
  color: '#000',
  width: '50%',
  minHeight: '250px',
  padding: '3rem'
};