reactstorybookone
Version:
React components library project for Innovaccer Design System
36 lines (27 loc) • 428 B
CSS
.d-none {
display: none ;
}
.d-inline {
display: inline ;
}
.d-inline-block {
display: inline-block ;
}
.d-block {
display: block ;
}
.d-table {
display: table ;
}
.d-table-row {
display: table-row ;
}
.d-table-cell {
display: table-cell ;
}
.d-flex {
display: flex ;
}
.d-inline-flex {
display: inline-flex ;
}