mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 22:00:10 -04:00
34 lines
528 B
Plaintext
34 lines
528 B
Plaintext
.help-trigger {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.help-drawer {
|
|
.ant-drawer-body {
|
|
padding: 0;
|
|
height: 100%; // to allow iframe full dimensions
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.drawer-wrapper {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
iframe {
|
|
width: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
iframe.ready {
|
|
border: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
visibility: visible;
|
|
}
|
|
} |