mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
42d7e31d27
Summary: Showing configuration screen when widget is not mapped Test Plan: New test added Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D4192
43 lines
713 B
CSS
43 lines
713 B
CSS
iframe.custom_view {
|
|
border: none;
|
|
height: 100%;
|
|
flex: auto;
|
|
}
|
|
|
|
.custom_view_notification {
|
|
padding: 15px;
|
|
margin: 15px;
|
|
}
|
|
|
|
.custom_view_no_mapping {
|
|
padding: 15px;
|
|
margin: 15px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: var(--grist-theme-text, var(--grist-color-dark));
|
|
}
|
|
|
|
.custom_view_no_mapping h1 {
|
|
max-width: 310px;
|
|
margin-bottom: 24px;
|
|
margin-top: 56px;
|
|
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
line-height: 26px;
|
|
text-align: center;
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.custom_view_no_mapping p {
|
|
max-width: 310px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
}
|