Simple monitor for displaying MIDI status for digital pianos.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

23 行
249 B

  1. html {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. body {
  6. margin: 0;
  7. width: 100%;
  8. height: 100%;
  9. }
  10. #root {
  11. width: 100%;
  12. height: 100%;
  13. display: grid;
  14. grid-template-columns: 1fr auto;
  15. align-items: stretch;
  16. }
  17. :root {
  18. --size-scale-factor: 2;
  19. }