| 123456789101112131415161718192021222324252627282930 |
-
- .flex-row{
- display: flex;
- flex-direction: row;
- }
- .flex-col{
- display: flex;
- flex-direction: column;
- }
- .flex-extend{
- flex: 1;
- }
- .flex-end{
- align-self: flex-end;
- }
- .hidden {
- display: none;
- }
- .disabled{
- pointer-events: none;
- }
- .ui-selected {
- background-color: #cce6ff !important;
- }
|