index.scss 389 Bytes
Newer Older
hank committed
1 2 3 4 5
@import '@styles/var.scss';

.menu-item {
  &-input {
    border: 1px solid #999;
hank committed
6
    height: 60px;
hank committed
7 8 9
    margin: 10px 5px;
  }
}
hank committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

.list-item-container {
  padding: 20px;
  border: 1px solid #999;
  margin: 20px;

  .list-item-title {
    display: flex;
    justify-content: space-between;

    .list-item-index {
      color: #333;
    }

    .list-item-del {
      color: red;
    }
  }
}