A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
246B

  1. .list-container{
  2. width: 100%;
  3. height: 300px;
  4. overflow-y: auto;
  5. overflow-x: hidden;
  6. }
  7. .list-item-container{
  8. background-color: $list-item-bg;
  9. border-radius: 8px;
  10. .item-selected{
  11. background-color: $list-item-selected-bg;
  12. }
  13. }