blob: 60a99bf5be7b097f473862d99a317d70df05289a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Style
// Layout
.inspection-detail {
th {
width: 16em;
}
pre, td {
white-space: break-spaces;
word-break: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
}
|