mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-03-01 05:06:36 +00:00
48 lines
504 B
CSS
48 lines
504 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.negative.message {
|
|
margin: auto;
|
|
}
|
|
|
|
div.ui.card.intro {
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|