@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
38 lines (37 loc) • 882 B
CSS
.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: var(--zd_font_size13) ;
max-width: 100% ;
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
}
.medium {
font-size: var(--zd_font_size14) ;
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;
}