mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-12 22:46:58 +03:00
21 lines
317 B
TypeScript
21 lines
317 B
TypeScript
// language=CSS
|
|
export const styles = `
|
|
|
|
.pdk-partial-modal__body {}
|
|
|
|
.pdk-partial-modal__content {
|
|
max-height: 70vh;
|
|
overflow: scroll;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.pdk-partial-modal__footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.pdk-partial-modal__footer button {
|
|
margin-left: 10px;
|
|
}
|
|
`;
|