king
2023-02-17 8137ac074ce6370e4b46295e7acf9c7870ef82d2
src/menu/components/card/cardcomponent/index.scss
@@ -62,3 +62,34 @@
    background: rgba(255, 255, 255, 0.55);
  }
}
.card-item {
  .circle-select {
    position: relative;
    display: none;
    width: 16px;
    height: 16px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    box-sizing: content-box;
    margin: auto;
    margin-right: 5px;
    background-color: #ffffff;
    transition: border-color 0.2s;
    cursor: pointer;
  }
}
// square
.card-item.mk-checkable {
  display: flex;
  .circle-select {
    display: inline-block;
  }
  .model-menu-card-cell-list {
    flex: 1;
  }
}
.card-item.mk-checkable.square {
  .circle-select {
    border-radius: 0;
  }
}