Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x | .bold {
composes: bold from '~@zohodesk/components/lib/common/common.module.css';
}
.semiBold {
composes: semibold from '~@zohodesk/components/lib/common/common.module.css';
}
.primaryColor {
color: var(--zdt_tabletext_primary_text);
}
.defaultColor {
color: var(--zdt_tabletext_default_text);
}
.greenColor {
color: var(--zdt_tabletext_green_text);
}
.dangerColor {
color: var(--zdt_tabletext_danger_text);
}
.small {
font-size: 13px;
max-width: 100%;
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
}
.medium {
font-size: 14px;
max-width: 100%;
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
}
.heading {
text-transform: uppercase;
color: var(--zdt_tabletext_heading_text);
vertical-align: middle;
composes: small;
}
.isClickable {
cursor: pointer;
}
|