index.css 249 B

123456789101112131415161718
  1. .layout-Cell>img {
  2. border-radius: 5px;
  3. }
  4. .layout-Cell {
  5. background: white;
  6. display: flex;
  7. align-items: center;
  8. height: 100%;
  9. }
  10. .layout-Cell:hover {
  11. cursor: -webkit-grab;
  12. }
  13. .layout-Cell.static:hover {
  14. cursor: no-drop;
  15. }