Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/fuel/fuel-grid.css
12241 views
1
/**
2
* @provides fuel-grid-css
3
*/
4
5
.device-desktop .fuel-grid,
6
.device-tablet .fuel-grid-tablet > .fuel-grid {
7
display: table;
8
table-layout: fixed;
9
}
10
11
.device-desktop .fuel-grid-body,
12
.device-tablet .fuel-grid-tablet > .fuel-grid > .fuel-grid-body {
13
display: table-row-group;
14
}
15
16
.device-desktop .fuel-grid-row,
17
.device-tablet .fuel-grid-tablet > .fuel-grid > .fuel-grid-body >
18
.fuel-grid-row {
19
display: table-row;
20
}
21
22
.device-desktop .fuel-grid-cell,
23
.device-tablet .fuel-grid-tablet > .fuel-grid > .fuel-grid-body >
24
.fuel-grid-row > .fuel-grid-cell {
25
display: table-cell;
26
vertical-align: top;
27
}
28
29
.fuel-grid-property-list > .fuel-grid {
30
width: 100%;
31
}
32
33