/* メイン編集画面のレイアウト */

/* アプリケーション全体のレイアウト */
body {
  background-color: var(--kaku-bg-primary);
  color: var(--kaku-text-primary);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  touch-action: none; /* ブラウザのデフォルトジェスチャーを無効化 */
  display: flex;
  flex-direction: column;
}

#app {
  display: flex;
  flex-direction: column;
  height: 100%;
}
