mirror of
https://github.com/status-im/consul.git
synced 2025-01-27 22:16:23 +00:00
b41cad6fdf
* Begin refactoring CSS into component folders. Moved most components into layout/skin folders, left out a couple of ones I want to think about more. * Adjust grays based on recent Structure changes * Switch to fullscreen layout for lists and detail, left aligned forms (#4435) * Specifically use the 'actions_close' label, not just the :last-child (actions-group) * Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
27 lines
474 B
SCSS
27 lines
474 B
SCSS
.unhealthy > div,
|
|
.healthy > div {
|
|
@extend %card-grid;
|
|
}
|
|
.list-collection {
|
|
height: 500px;
|
|
position: relative;
|
|
}
|
|
.healthy > div {
|
|
width: calc(100% + 23px);
|
|
}
|
|
.unhealthy > div {
|
|
margin-bottom: 20px;
|
|
}
|
|
%card-grid > ul,
|
|
%card-grid > ol {
|
|
list-style-type: none;
|
|
display: grid;
|
|
grid-gap: 20px 2%;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
grid-auto-rows: 12px;
|
|
}
|
|
.healthy > div > ul > li {
|
|
padding-right: 23px;
|
|
padding-bottom: 20px;
|
|
}
|