mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-03-14 03:23:46 +00:00
57 lines
609 B
CSS
57 lines
609 B
CSS
body, html {
|
|
height: 100%;
|
|
}
|
|
|
|
.node {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#content {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#svgContainer {
|
|
flex: 1 1 auto;
|
|
overflow: auto;
|
|
}
|
|
|
|
#sidePanel {
|
|
flex: 0 0 320px;
|
|
overflow: auto;
|
|
border-left: solid #ccc 1px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
p.comment {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
div.ui.error.message {
|
|
margin: auto;
|
|
}
|
|
|
|
div.ui.errorPopup.message {
|
|
left: 40px;
|
|
bottom: 40px;
|
|
position: fixed;
|
|
}
|
|
|
|
div.ui.card.intro {
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|
|
|
|
.version {
|
|
color: #888;
|
|
} |