Files
pathfinder/sass/layout/module/_system_graph.scss
Mark Friedrich 0c3d57e833 - BC Break: Required _PHP_ version changed >=7.1>=7.2
- NEW "plugin API" for custom UI modules, closed #913
- NEW live "Killstream" for killboard module, closed #909
- NEW "custom layout" UI settings, closed #470
2020-02-01 12:40:17 +01:00

23 lines
462 B
SCSS

.pf-system-graph-module {
.pf-module-head {
h5.pull-right {
margin-right: 5px;
}
}
.pf-module-body {
grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
}
.pf-system-graph {
position: relative;
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
@include transition(height .18s ease-out); // height is reduced when no graph shown
}
}